mirror of
https://github.com/wiiu-env/PayloadLoaderInstaller.git
synced 2025-01-11 16:19:08 +01:00
Fix the compiler warnings
This commit is contained in:
parent
10ff3d67c2
commit
440164b7e6
@ -24,7 +24,7 @@ void Utils::dumpHex(const void *data, size_t size) {
|
||||
if ((i + 1) % 16 == 0) {
|
||||
WHBLogPrintf("| %s ", ascii);
|
||||
if (i + 1 < size) {
|
||||
DEBUG_FUNCTION_LINE("0x%08X (0x%04X); ", data + i + 1, i + 1);
|
||||
DEBUG_FUNCTION_LINE("0x%08X (0x%04X); ", ((uint32_t)data) + i + 1, i + 1);
|
||||
}
|
||||
} else if (i + 1 == size) {
|
||||
ascii[(i + 1) % 16] = '\0';
|
||||
|
Loading…
x
Reference in New Issue
Block a user