]> git.codecow.com Git - Monocypher.git/commitdiff
Forgot to static the fe_pow22523() function
authorLoup Vaillant <loup@loup-vaillant.fr>
Sun, 22 Jul 2018 21:15:10 +0000 (23:15 +0200)
committerLoup Vaillant <loup@loup-vaillant.fr>
Sun, 22 Jul 2018 21:15:10 +0000 (23:15 +0200)
src/monocypher.c

index 877bc3bb9d2576aef1b53b28de9c0490b673b9b8..e6e1b0e7b16e150f1b233b276855faf04949a967 100644 (file)
@@ -1187,7 +1187,7 @@ static void fe_invert(fe out, const fe z)
 }
 
 // This could be simplified, but it would be slower
-void fe_pow22523(fe out, const fe z)
+static void fe_pow22523(fe out, const fe z)
 {
     fe t0, t1, t2;
     fe_sq(t0, z);