aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Altendorf <sda@fstab.net>2019-09-18 12:00:52 -0400
committerKyle Altendorf <sda@fstab.net>2019-09-18 12:00:52 -0400
commit3a47a40cc5d8c281e67449cd90f54cd25d5264e9 (patch)
tree0083f27ff7170630420cb0aed69950821076a566
parentUse size_t and fixed width format specifiers for printf()... for siphash.c (diff)
downloadsiphash-3a47a40cc5d8c281e67449cd90f54cd25d5264e9.tar.gz
siphash-3a47a40cc5d8c281e67449cd90f54cd25d5264e9.tar.xz
Correct \ alignment
Diffstat (limited to '')
-rw-r--r--siphash.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/siphash.c b/siphash.c
index c89dc1f..71d85de 100644
--- a/siphash.c
+++ b/siphash.c
@@ -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