From 64aeb62fa3afeff0bd9b1c864bddc0730d0d1544 Mon Sep 17 00:00:00 2001 From: Akuli Date: Tue, 14 Jan 2025 12:12:58 +0200 Subject: [PATCH] Fix C compiler warning in bootstrap compiler --- bootstrap_compiler/run.c | 1 + 1 file changed, 1 insertion(+) diff --git a/bootstrap_compiler/run.c b/bootstrap_compiler/run.c index b92dfe3c..983ba019 100644 --- a/bootstrap_compiler/run.c +++ b/bootstrap_compiler/run.c @@ -8,6 +8,7 @@ int run_exe(const char *exepath, bool valgrind) { char *command = malloc(strlen(exepath) + 1000); #ifdef _WIN32 + assert(!valgrind); sprintf(command, "\"%s\"", exepath); char *p; while ((p = strchr(command, '/')))