Fix compiler warnings

This commit is contained in:
Maschell 2022-01-30 13:49:38 +01:00
parent 16d5d734c7
commit 671f207ebe
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ void 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';