diff options
author | WaluigiWare64 <68647953+WaluigiWare64@users.noreply.github.com> | 2021-05-16 17:17:57 +0100 |
---|---|---|
committer | WaluigiWare64 <68647953+WaluigiWare64@users.noreply.github.com> | 2021-05-16 17:17:57 +0100 |
commit | e02bbcb3ac72609969d68e54c7d7d03e05af493c (patch) | |
tree | 3eb99270e4bd0d360e3adac238685bb6fb298b6b | |
parent | 4a39a8421698d933c60fdcd82d2e828acf1fe9f0 (diff) |
Use printf macro for u64
-rw-r--r-- | src/DSi.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DSi.cpp b/src/DSi.cpp index 0070c41..c408a28 100644 --- a/src/DSi.cpp +++ b/src/DSi.cpp @@ -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); |