Skip to content
This repository has been archived by the owner on Sep 29, 2021. It is now read-only.

Commit

Permalink
Cast result to correct type for display
Browse files Browse the repository at this point in the history
  • Loading branch information
phijor committed May 12, 2016
1 parent ff09c42 commit 66fd87e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 3DS/source/util.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ PrintConsole debug;
void util_hang(Result res)
{
fprintf(stderr, "Press START to exit.\n");
util_debug_printf("Will exit with status 0x%08x.\n", res);
util_debug_printf("Will exit with status 0x%08x.\n", (unsigned int) res);
while (1) {
hidScanInput();

Expand Down

0 comments on commit 66fd87e

Please sign in to comment.