Skip to content

Commit

Permalink
[clang] fix another warning that clang doesn't like
Browse files Browse the repository at this point in the history
  • Loading branch information
travisg committed Apr 2, 2024
1 parent 14f430d commit a070819
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/x86/faults.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ static void dump_fault_frame(x86_iframe_t *frame) {
}

static void exception_die(x86_iframe_t *frame, const char *msg) {
dprintf(CRITICAL, msg);
dprintf(CRITICAL, "%s", msg);
dump_fault_frame(frame);

for (;;) {
Expand Down

0 comments on commit a070819

Please sign in to comment.