diff options
Diffstat (limited to 'executor/common_linux.h')
| -rw-r--r-- | executor/common_linux.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/executor/common_linux.h b/executor/common_linux.h index 7f2247d12..8919e6b5b 100644 --- a/executor/common_linux.h +++ b/executor/common_linux.h @@ -387,7 +387,7 @@ static void debug_dump_data(const char* data, int length) { int i; for (i = 0; i < length; i++) { - debug("%02hx ", (uint8_t)data[i] & (uint8_t)0xff); + debug("%02x ", data[i] & 0xff); if (i % 16 == 15) debug("\n"); } |
