From: Loup Vaillant Date: Wed, 8 Mar 2017 23:11:37 +0000 (+0100) Subject: removed last useless element from array X-Git-Url: https://git.codecow.com/?a=commitdiff_plain;h=a9cc6ec63a5d5f39fd2d59197e7e2a8ccf52e32b;p=Monocypher.git removed last useless element from array --- diff --git a/monocypher.c b/monocypher.c index 64c55d8..9b993fe 100644 --- a/monocypher.c +++ b/monocypher.c @@ -904,7 +904,7 @@ sv fe_pow22523(fe out, const fe z) { fe_power(out, z, 252, 3); } sv fe_tobytes(u8 s[32], const fe h) { - i32 t[11]; + i32 t[10]; FOR (i, 0, 10) { t[i] = h[i]; } i32 q = (19 * t[9] + (((i32) 1) << 24)) >> 25;