From e3ba30e6ef075ab89ab06c51ca392ee2d981effc Mon Sep 17 00:00:00 2001 From: Daniel Green Date: Fri, 23 Aug 2019 18:26:38 -0400 Subject: [PATCH] astyle again... --- bn_mp_todecimal_fast.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bn_mp_todecimal_fast.c b/bn_mp_todecimal_fast.c index 8fdd419f3..b07ec69dc 100644 --- a/bn_mp_todecimal_fast.c +++ b/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 int s_s = left ? snprintf(next_piece, 4, "%u", mp_get_i32(number)) : snprintf(next_piece, 4, "%03u", mp_get_i32(number)); int r_s = (int)strlen(*result); - (*result) = realloc(*result, (size_t) (r_s + s_s + 2)); + (*result) = realloc(*result, (size_t)(r_s + s_s + 2)); strcat(*result, next_piece); return MP_OKAY; }