Skip to content

Commit

Permalink
fix cross compilation to windows
Browse files Browse the repository at this point in the history
  • Loading branch information
spytheman committed Jan 5, 2025
1 parent 5cd2aa6 commit 090d7bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vlib/builtin/builtin_windows.c.v
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ fn unhandled_exception_handler(e &ExceptionPointers) int {
return 0
}
else {
println('Unhandled Exception 0x${e.exception_record.code:X}')
println('Unhandled Exception 0x' + ptr_str(e.exception_record.code))
print_backtrace_skipping_top_frames(5)
}
}
Expand Down

0 comments on commit 090d7bf

Please sign in to comment.