Skip to content

Commit

Permalink
Fix C compiler warning in bootstrap compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
Akuli committed Jan 14, 2025
1 parent 45721f3 commit 64aeb62
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions bootstrap_compiler/run.c
Original file line number Diff line number Diff line change
Expand Up @@ -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, '/')))
Expand Down

0 comments on commit 64aeb62

Please sign in to comment.