Fix format specifiers

This commit is contained in:
wheremyfoodat 2023-08-11 18:06:14 +03:00 committed by GitHub
parent 79aa8620e8
commit 3c610fa332
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -58,7 +58,7 @@ namespace IVFC {
// According to 3DBrew, this is usually the case but not guaranteed
if (ivfcActualSize != ivfcDescriptorSize) {
printf("IVFC descriptor size mismatch: %lx != %lx\n", ivfcActualSize, ivfcDescriptorSize);
printf("IVFC descriptor size mismatch: %llx != %llx\n", ivfcActualSize, ivfcDescriptorSize);
}
if (magicIdentifier == 0x10000 && ivfcActualSize != 0x5C) {
@ -73,4 +73,4 @@ namespace IVFC {
return ivfcActualSize;
}
} // namespace IVFC
} // namespace IVFC