Skip to content

Commit bd2895f

Browse files
committed
Merge pull request bitcoin#371
e5a9047 [Trivial] Remove double semicolons (paveljanik)
2 parents c18b869 + e5a9047 commit bd2895f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/field_5x52_int128_impl.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ SECP256K1_INLINE static void secp256k1_fe_mul_inner(uint64_t *r, const uint64_t
137137
VERIFY_BITS(r[2], 52);
138138
VERIFY_BITS(c, 63);
139139
/* [d 0 0 0 t4 t3+c r2 r1 r0] = [p8 p7 p6 p5 p4 p3 p2 p1 p0] */
140-
c += d * R + t3;;
140+
c += d * R + t3;
141141
VERIFY_BITS(c, 100);
142142
/* [t4 c r2 r1 r0] = [p8 p7 p6 p5 p4 p3 p2 p1 p0] */
143143
r[3] = c & M; c >>= 52;
@@ -259,7 +259,7 @@ SECP256K1_INLINE static void secp256k1_fe_sqr_inner(uint64_t *r, const uint64_t
259259
VERIFY_BITS(c, 63);
260260
/* [d 0 0 0 t4 t3+c r2 r1 r0] = [p8 p7 p6 p5 p4 p3 p2 p1 p0] */
261261

262-
c += d * R + t3;;
262+
c += d * R + t3;
263263
VERIFY_BITS(c, 100);
264264
/* [t4 c r2 r1 r0] = [p8 p7 p6 p5 p4 p3 p2 p1 p0] */
265265
r[3] = c & M; c >>= 52;

0 commit comments

Comments
 (0)