]> git.ipfire.org Git - thirdparty/openssl.git/blobdiff - crypto/ec/ecp_smpl.c
Consistent formatting for sizeof(foo)
[thirdparty/openssl.git] / crypto / ec / ecp_smpl.c
index 8d4ea14fb716fac401e6e6c2e8ef688d2d0d3cb5..7ff5489ce1a8184db71c34da3d54d0117a03376b 100644 (file)
@@ -1216,7 +1216,7 @@ int ec_GFp_simple_points_make_affine(const EC_GROUP *group, size_t num,
     if (tmp_Z == NULL)
         goto err;
 
-    prod_Z = OPENSSL_malloc(num * sizeof prod_Z[0]);
+    prod_Z = OPENSSL_malloc(num * sizeof(prod_Z[0]));
     if (prod_Z == NULL)
         goto err;
     for (i = 0; i < num; i++) {