aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/main.c b/main.c
index 7349517..28bc2de 100644
--- a/main.c
+++ b/main.c
@@ -1,7 +1,7 @@
/*
SipHash reference C implementation
- Written in 2012 by
+ Written in 2012 by
Jean-Philippe Aumasson <jeanphilippe.aumasson@gmail.com>
Daniel J. Bernstein <djb@cr.yp.to>
@@ -20,7 +20,7 @@ typedef uint32_t u32;
typedef uint8_t u8;
extern int siphash( unsigned char *out, const unsigned char *in,
- unsigned long long inlen, const unsigned char *k );
+ unsigned long long inlen, const unsigned char *k );
/*
SipHash-2-4 output with
@@ -131,7 +131,7 @@ int main()
{
if ( test_vectors() )
printf( "test vectors ok\n" );
- else
+ else
printf( "test vectors fail\n" );
return 0;