Cast to unsigned for %#jx.

Noticed by:	jh@
This commit is contained in:
des 2011-10-11 07:46:45 +00:00
parent aa45b838bb
commit 405f55d978

View File

@ -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 = ','; \