Use the NLIMBS macro rather than try and calculate the number of limbs
[openssl.git] / crypto / ec / curve448 / arch_32 / f_impl.h
index 60b5347691c9a7a75b494d158827f17c3ce88f3e..78971e8576df48298357ad2c634068df77d77d56 100644 (file)
@@ -20,7 +20,7 @@ void gf_add_RAW(gf out, const gf a, const gf b)
 {
     unsigned int i;
 
-    for (i = 0; i < sizeof(*out) / sizeof(out->limb[0]); i++) {
+    for (i = 0; i < NLIMBS; i++) {
         out->limb[i] = a->limb[i] + b->limb[i];
     }
 }