mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-29 05:28:00 +00:00
cast to unsigned
This commit is contained in:
parent
78ad353491
commit
6bd6bd6d62
@ -46,7 +46,7 @@ hexdump(const char *msg, const char *msg2, void *base, size_t len) {
|
||||
p = base;
|
||||
cnt = 0;
|
||||
|
||||
printf("*** %s [%s] (%u bytes @ %p)\n", msg, msg2, len, base);
|
||||
printf("*** %s [%s] (%u bytes @ %p)\n", msg, msg2, (unsigned)len, base);
|
||||
|
||||
while (cnt < len) {
|
||||
if (cnt % 16 == 0)
|
||||
|
Loading…
x
Reference in New Issue
Block a user