Skip to content

Commit 601ca04

Browse files
committed
Merge pull request #129
35399e0 Bugfix: b is restricted, not r (Pieter Wuille)
2 parents bd313f7 + 35399e0 commit 601ca04

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/field_5x52_int128_impl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#define VERIFY_BITS(x, n) do { } while(0)
1616
#endif
1717

18-
SECP256K1_INLINE static void secp256k1_fe_mul_inner(const uint64_t *a, const uint64_t *b, uint64_t * SECP256K1_RESTRICT r) {
18+
SECP256K1_INLINE static void secp256k1_fe_mul_inner(const uint64_t *a, const uint64_t * SECP256K1_RESTICT b, uint64_t *r) {
1919
VERIFY_BITS(a[0], 56);
2020
VERIFY_BITS(a[1], 56);
2121
VERIFY_BITS(a[2], 56);

0 commit comments

Comments
 (0)