From a9cc6ec63a5d5f39fd2d59197e7e2a8ccf52e32b Mon Sep 17 00:00:00 2001 From: Loup Vaillant Date: Thu, 9 Mar 2017 00:11:37 +0100 Subject: [PATCH] removed last useless element from array --- monocypher.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.47.3