diff options
Diffstat (limited to 'siphash24.c')
-rw-r--r-- | siphash24.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/siphash24.c b/siphash24.c index d5ea0e0..a6c6c72 100644 --- a/siphash24.c +++ b/siphash24.c @@ -52,8 +52,8 @@ do { \ printf( "(%3d) v0 %08x %08x\n", \ ( int )inlen, ( uint32_t )( v0 >> 32 ), ( uint32_t )v0 ); \ - printf( "(%3d) v1 %08x %08x\n", ( int )inlen, \ - ( uint32_t )( v1 >> 32 ), ( uint32_t )v1 ); \ + printf( "(%3d) v1 %08x %08x\n", \ + ( int )inlen, ( uint32_t )( v1 >> 32 ), ( uint32_t )v1 ); \ printf( "(%3d) v2 %08x %08x\n", \ ( int )inlen, ( uint32_t )( v2 >> 32 ), ( uint32_t )v2 ); \ printf( "(%3d) v3 %08x %08x\n", \ |