diff options
author | Kyle Altendorf <sda@fstab.net> | 2019-09-18 12:00:52 -0400 |
---|---|---|
committer | Kyle Altendorf <sda@fstab.net> | 2019-09-18 12:00:52 -0400 |
commit | 3a47a40cc5d8c281e67449cd90f54cd25d5264e9 (patch) | |
tree | 0083f27ff7170630420cb0aed69950821076a566 | |
parent | Use size_t and fixed width format specifiers for printf()... for siphash.c (diff) | |
download | siphash-3a47a40cc5d8c281e67449cd90f54cd25d5264e9.tar.gz siphash-3a47a40cc5d8c281e67449cd90f54cd25d5264e9.tar.xz |
Correct \ alignment
Diffstat (limited to '')
-rw-r--r-- | siphash.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -67,10 +67,10 @@ #ifdef DEBUG #define TRACE \ do { \ - printf("(%3zu) v0 %016"PRIx64"\n", inlen, v0); \ - printf("(%3zu) v1 %016"PRIx64"\n", inlen, v1); \ - printf("(%3zu) v2 %016"PRIx64"\n", inlen, v2); \ - printf("(%3zu) v3 %016"PRIx64"\n", inlen, v3); \ + printf("(%3zu) v0 %016"PRIx64"\n", inlen, v0); \ + printf("(%3zu) v1 %016"PRIx64"\n", inlen, v1); \ + printf("(%3zu) v2 %016"PRIx64"\n", inlen, v2); \ + printf("(%3zu) v3 %016"PRIx64"\n", inlen, v3); \ } while (0) #else #define TRACE |