We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af8be3a commit e3ba30eCopy full SHA for e3ba30e
bn_mp_todecimal_fast.c
@@ -17,7 +17,7 @@ mp_err mp_todecimal_fast_rec(mp_int *number, mp_int *nL, mp_int *shiftL, mp_int
17
int s_s = left ? snprintf(next_piece, 4, "%u", mp_get_i32(number)) : snprintf(next_piece, 4, "%03u",
18
mp_get_i32(number));
19
int r_s = (int)strlen(*result);
20
- (*result) = realloc(*result, (size_t) (r_s + s_s + 2));
+ (*result) = realloc(*result, (size_t)(r_s + s_s + 2));
21
strcat(*result, next_piece);
22
return MP_OKAY;
23
}
0 commit comments