diff options
Diffstat (limited to 'src/big_int.cpp')
| -rw-r--r-- | src/big_int.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/big_int.cpp b/src/big_int.cpp index 5509545ca..d8b3e63a7 100644 --- a/src/big_int.cpp +++ b/src/big_int.cpp @@ -71,7 +71,7 @@ void big_int_and (BigInt *dst, BigInt const *x, BigInt const *y); void big_int_and_not(BigInt *dst, BigInt const *x, BigInt const *y); void big_int_xor (BigInt *dst, BigInt const *x, BigInt const *y); void big_int_or (BigInt *dst, BigInt const *x, BigInt const *y); -void big_int_not (BigInt *dst, BigInt const *x, u64 bit_count, bool is_signed); +void big_int_not (BigInt *dst, BigInt const *x, i32 bit_count, bool is_signed); void big_int_add_eq(BigInt *dst, BigInt const *x); |