Skip to content

Commit

Permalink
Fix compiler warning on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
stargateaudio committed Nov 2, 2021
1 parent d7cc649 commit cc70221
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/engine/src/compiler.c
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ void sg_print_stack_trace(){
sprintf(file_name, "???");
}

log_info("[%i] %s %s:%i", i, sym_name, file_name, line_num);
log_info("[%i] %s %s:%i", (int)i, sym_name, file_name, line_num);
}

SymCleanup(process);
Expand Down

0 comments on commit cc70221

Please sign in to comment.