Use printf macro for u64
This commit is contained in:
parent
4a39a84216
commit
e02bbcb3ac
|
@ -446,7 +446,7 @@ bool LoadNAND()
|
|||
fread(&ConsoleID, 1, 8, SDMMCFile);
|
||||
|
||||
printf("eMMC CID: "); printhex(eMMC_CID, 16);
|
||||
printf("Console ID: %016lX\n", ConsoleID);
|
||||
printf("Console ID: %" PRIu64 "\n", ConsoleID);
|
||||
}
|
||||
|
||||
memset(ITCMInit, 0, 0x8000);
|
||||
|
|
Loading…
Reference in New Issue