Skip to content

Fix format error that prevents build with GCC 14.2 #873

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 1, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions quickjs.c
Original file line number Diff line number Diff line change
Expand Up @@ -27133,7 +27133,7 @@ static int js_create_module_bytecode_function(JSContext *ctx, JSModuleDef *m)
if (!var_ref)
goto fail;

module_trace(ctx, "local %d: %p\n", i, var_ref);
module_trace(ctx, "local %d: %p\n", i, (void *)var_ref);

var_refs[i] = var_ref;
}
Expand Down Expand Up @@ -27344,7 +27344,7 @@ static int js_inner_module_linking(JSContext *ctx, JSModuleDef *m,
var_ref->header.ref_count++;
var_refs[mi->var_idx] = var_ref;

module_trace(ctx, "local export (var_ref=%p)\n", var_ref);
module_trace(ctx, "local export (var_ref=%p)\n", (void *)var_ref);
}
}
}
Expand Down