mirror of
https://github.com/ziglang/zig.git
synced 2026-02-21 16:54:52 +00:00
fix incorrect use of printf in previous commit
This commit is contained in:
parent
3bfacf071e
commit
9753e87545
@ -8165,7 +8165,7 @@ static void gen_global_asm(CodeGen *g) {
|
||||
}
|
||||
|
||||
static void print_zig_cc_cmd(const char *zig_exe, ZigList<const char *> *args) {
|
||||
fprintf(stderr, zig_exe);
|
||||
fprintf(stderr, "%s", zig_exe);
|
||||
for (size_t arg_i = 0; arg_i < args->length; arg_i += 1) {
|
||||
fprintf(stderr, " %s", args->at(arg_i));
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user