]> git.codecow.com Git - Monocypher.git/commitdiff
removed last useless element from array
authorLoup Vaillant <loup@loup-vaillant.fr>
Wed, 8 Mar 2017 23:11:37 +0000 (00:11 +0100)
committerLoup Vaillant <loup@loup-vaillant.fr>
Wed, 8 Mar 2017 23:11:37 +0000 (00:11 +0100)
monocypher.c

index 64c55d8584f57b9f8878cc90126f25159c4d0be8..9b993fee41459afb41f4ceb4e8bcc17d981ce4a3 100644 (file)
@@ -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;