From 3d1a79158df421eadac9e32481f8edbd2e499f39 Mon Sep 17 00:00:00 2001 From: Samuel Neves Date: Thu, 5 Nov 2015 07:09:06 +0000 Subject: fix issue #11 --- ref/blake2sp-ref.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ref') diff --git a/ref/blake2sp-ref.c b/ref/blake2sp-ref.c index 4397618..1ddb5b1 100644 --- a/ref/blake2sp-ref.c +++ b/ref/blake2sp-ref.c @@ -188,7 +188,7 @@ int blake2sp( uint8_t *out, const void *in, const void *key, uint8_t outlen, uin blake2s_state FS[1]; /* Verify parameters */ - :if ( NULL == in && inlen > 0 ) return -1; + if ( NULL == in && inlen > 0 ) return -1; if ( NULL == out ) return -1; -- cgit v1.2.3