Skip to content

Commit

Permalink
fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
dderjoel committed Jul 27, 2023
1 parent ff0f64a commit 00fdf10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/field_5x52_int128_impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,10 @@ static FIAT_SECP256K1_DETTMAN_FIAT_INLINE secp256k1_uint128 u128_add_u128_u128(s
/* adding low b to r*/
secp256k1_u128_accum_u64(&r, bl);

/* adding high b*/
rl = secp256k1_u128_to_u64(&r);
rh = secp256k1_u128_hi_u64(&r);

/* adding high b*/
bh = secp256k1_u128_hi_u64(&b);
rh += bh;

Expand Down

0 comments on commit 00fdf10

Please sign in to comment.