Use printf macro for u64

This commit is contained in:
WaluigiWare64 2021-05-16 17:17:57 +01:00
parent 4a39a84216
commit e02bbcb3ac
1 changed files with 1 additions and 1 deletions

View File

@ -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);