mirror of
https://github.com/jedisct1/libsodium.git
synced 2026-09-25 04:09:58 +03:00
Fix format string sign
This commit is contained in:
@@ -27,7 +27,7 @@ main(void)
|
||||
} else {
|
||||
printf(" ");
|
||||
}
|
||||
printf("%3d", (unsigned int) out[i]);
|
||||
printf("%3u", (unsigned int) out[i]);
|
||||
if (i % 8 == 7) {
|
||||
printf("\n");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user