Jeroen van Rijn 3 years ago
parent
commit
d9b0c05acf
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/big_int.cpp

+ 1 - 1
src/big_int.cpp

@@ -40,7 +40,7 @@ typedef mp_int BigInt;
 void big_int_from_u64(BigInt *dst, u64 x);
 void big_int_from_i64(BigInt *dst, i64 x);
 void big_int_init    (BigInt *dst, BigInt const *src);
-void big_int_from_string(BigInt *dst, String const &s, bool &success);
+void big_int_from_string(BigInt *dst, String const &s, bool *success);
 
 void big_int_dealloc(BigInt *dst) {
 	mp_clear(dst);