mirror of
https://github.com/jedisct1/libsodium.git
synced 2026-08-25 08:37:13 +09:00
Braces
This commit is contained in:
@@ -24,8 +24,9 @@ main(void)
|
||||
|
||||
for (i = 0; i < 32; ++i) {
|
||||
printf(",0x%02x", (unsigned int) rs[i]);
|
||||
if (i % 8 == 7)
|
||||
if (i % 8 == 7) {
|
||||
printf("\n");
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -41,8 +41,9 @@ main(void)
|
||||
|
||||
for (i = 32; i < 163; ++i) {
|
||||
printf(",0x%02x", (unsigned int) c[i]);
|
||||
if (i % 8 == 7)
|
||||
if (i % 8 == 7) {
|
||||
printf("\n");
|
||||
}
|
||||
}
|
||||
printf("\n");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user