aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHarold Brenes <harold@hbrenes.com>2025-07-13 20:29:54 -0400
committerHarold Brenes <harold@hbrenes.com>2025-07-13 20:29:54 -0400
commit4d2d890b4c87f3376626b88782e64f97e749eaa8 (patch)
treeb8a18e5c8a9d9f8506915d67abe011d6b9112b2b /src
parent0e245fb40f12f0dd4ac53cc9c535e354a0540ea6 (diff)
Fix accidental incorrect assignment
Diffstat (limited to 'src')
-rw-r--r--src/linker.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/linker.cpp b/src/linker.cpp
index 01fa7065a..bf7705282 100644
--- a/src/linker.cpp
+++ b/src/linker.cpp
@@ -797,7 +797,7 @@ try_cross_linking:;
break;
}
- const char* original_clang_path = original_clang_path;
+ const char* original_clang_path = clang_path;
gbString darwin_find_sdk_cmd = gb_string_make(temporary_allocator(), "");
darwin_find_sdk_cmd = gb_string_append_fmt(darwin_find_sdk_cmd, "xcrun --sdk %s --show-sdk-path", darwin_xcrun_sdk_name);