mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Cast to unsigned for %#jx.
Noticed by: jh@
This commit is contained in:
parent
7792754061
commit
63a896e49b
1 changed files with 1 additions and 1 deletions
|
|
@ -114,7 +114,7 @@ struct ktr_header ktr_header;
|
|||
if (decimal) \
|
||||
printf("%c%jd", c, (intmax_t)*i); \
|
||||
else \
|
||||
printf("%c%#jx", c, (intmax_t)*i); \
|
||||
printf("%c%#jx", c, (uintmax_t)*i); \
|
||||
i++; \
|
||||
n--; \
|
||||
c = ','; \
|
||||
|
|
|
|||
Loading…
Reference in a new issue