From 00fdf100cc2d10ef0a2480f9a8414858bc946ae2 Mon Sep 17 00:00:00 2001 From: Joel Date: Thu, 27 Jul 2023 10:35:38 +0930 Subject: [PATCH] fix comment --- src/field_5x52_int128_impl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/field_5x52_int128_impl.h b/src/field_5x52_int128_impl.h index ae3e18d460..56b2e02e42 100644 --- a/src/field_5x52_int128_impl.h +++ b/src/field_5x52_int128_impl.h @@ -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;