summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbuild.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.c b/build.c
index 3996846..e2dc8b9 100755
--- a/build.c
+++ b/build.c
@@ -144,7 +144,7 @@ b8 str_eq(c8 const *a, c8 const *b) {
b8 check_compiler(c8 const *name) {
if (str_eq_lower(name, "cl") || str_eq_lower(name, "cl.exe")) {
- if (system(fmt("%s /?", name)) != 0)
+ if (system(fmt("%s", name)) != 0)
return 0;
return 1;
}