From 72544ea9aafc101dc267489b22a2fa329992a842 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Olivier=20Ch=C3=A9ron?= Date: Thu, 2 Jul 2020 19:35:06 +0200 Subject: [PATCH] Removed extra semicolon --- cbits/cryptonite_hash_prefix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cbits/cryptonite_hash_prefix.c b/cbits/cryptonite_hash_prefix.c index 06df581..b487708 100644 --- a/cbits/cryptonite_hash_prefix.c +++ b/cbits/cryptonite_hash_prefix.c @@ -63,7 +63,7 @@ void CRYPTONITE_HASHED(finalize_prefix)(struct HASHED_LOWER(ctx) *ctx, const uin b = 0; /* First padding byte */ - b |= 0x80 & (uint8_t) constant_time_eq(pos, n);; + b |= 0x80 & (uint8_t) constant_time_eq(pos, n); /* Size bytes are always at the end of a block */ if (index >= cut_off)