From 6ebd26f3dbaf54230f24118043fe91d1f09f9e8e Mon Sep 17 00:00:00 2001 From: Sahnvour Date: Sat, 23 Nov 2019 16:44:33 +0100 Subject: removed unnecessary backslashes in windows' libc paths --- src/libc_installation.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/libc_installation.cpp') diff --git a/src/libc_installation.cpp b/src/libc_installation.cpp index 6ae6bb9075..2adc1cb69d 100644 --- a/src/libc_installation.cpp +++ b/src/libc_installation.cpp @@ -389,7 +389,7 @@ static Error zig_libc_find_native_msvc_include_dir(ZigLibCInstallation *self, Zi } Buf search_path = BUF_INIT; buf_init_from_mem(&search_path, sdk->msvc_lib_dir_ptr, sdk->msvc_lib_dir_len); - buf_append_str(&search_path, "\\..\\..\\include"); + buf_append_str(&search_path, "..\\..\\include"); Buf *vcruntime_path = buf_sprintf("%s\\vcruntime.h", buf_ptr(&search_path)); bool exists; -- cgit v1.2.3