Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/BLAKE2/BLAKE2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ref/blake2sp-ref.c2
1 files changed, 1 insertions, 1 deletions
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;