1
mirror of https://github.com/jedisct1/libsodium.git synced 2024-12-20 02:25:14 -07:00

Fix format string sign

This commit is contained in:
Frank Denis 2017-12-01 15:24:48 +01:00
parent 07c5764d5e
commit 18af4c61eb

View File

@ -27,7 +27,7 @@ main(void)
} else { } else {
printf(" "); printf(" ");
} }
printf("%3d", (unsigned int) out[i]); printf("%3u", (unsigned int) out[i]);
if (i % 8 == 7) { if (i % 8 == 7) {
printf("\n"); printf("\n");
} }