summaryrefslogtreecommitdiffstats
path: root/crypto/ec/ecp_smpl.c
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2015-01-22 03:30:12 +0000
committerMatt Caswell <matt@openssl.org>2015-01-22 09:31:48 +0000
commit323d39e87f86bc4524881942aafc7539532aefff (patch)
treebe12d6bb31947e0e1a46a8b982f887a089d121c6 /crypto/ec/ecp_smpl.c
parentae5c8664e587f2445c8e4eb436cffbb64af4f6b8 (diff)
Rerun util/openssl-format-source -v -c .OpenSSL_1_0_2-post-auto-reformat
Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'crypto/ec/ecp_smpl.c')
-rw-r--r--crypto/ec/ecp_smpl.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/crypto/ec/ecp_smpl.c b/crypto/ec/ecp_smpl.c
index 4e75709053..d196dedfb3 100644
--- a/crypto/ec/ecp_smpl.c
+++ b/crypto/ec/ecp_smpl.c
@@ -1299,9 +1299,8 @@ int ec_GFp_simple_points_make_affine(const EC_GROUP *group, size_t num,
for (i = 1; i < num; i++) {
if (!BN_is_zero(&points[i]->Z)) {
- if (!group->
- meth->field_mul(group, prod_Z[i], prod_Z[i - 1],
- &points[i]->Z, ctx))
+ if (!group->meth->field_mul(group, prod_Z[i], prod_Z[i - 1],
+ &points[i]->Z, ctx))
goto err;
} else {
if (!BN_copy(prod_Z[i], prod_Z[i - 1]))