aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/pubkey
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2019-03-27 19:43:13 -0400
committerJack Lloyd <[email protected]>2019-03-27 19:43:13 -0400
commit07dd5c11a7893852f8b08e136da31a9aaa66f1ea (patch)
tree5824d89fc34a051d024e9eb27f5467c1e9a4f2d6 /src/lib/pubkey
parent87fb7334de6a0f4b8f990e53545c5a46478b0f59 (diff)
Fix some extra semicolons
Diffstat (limited to 'src/lib/pubkey')
-rw-r--r--src/lib/pubkey/ec_group/curve_gfp.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/pubkey/ec_group/curve_gfp.cpp b/src/lib/pubkey/ec_group/curve_gfp.cpp
index 4cc4d4255..61ebfda35 100644
--- a/src/lib/pubkey/ec_group/curve_gfp.cpp
+++ b/src/lib/pubkey/ec_group/curve_gfp.cpp
@@ -333,7 +333,7 @@ BigInt CurveGFp_P256::invert_element(const BigInt& x, secure_vector<word>& ws) c
curve_sqr(r, p4, ws);
for(size_t i = 0; i != 3; ++i)
curve_sqr_tmp(r, tmp, ws);
- curve_mul(p8, r, p4, ws);;
+ curve_mul(p8, r, p4, ws);
curve_sqr(r, p8, ws);
for(size_t i = 0; i != 7; ++i)