X-Git-Url: https://git.openssl.org/?p=openssl.git;a=blobdiff_plain;f=crypto%2Fbio%2Fb_print.c;h=4857cfe0ce841c558f3a50b4d91f5f3b30665acb;hp=5a3ea8c3a539ce4eaaecdef68e1c08c96a3bd44c;hb=2c288b2a7e4399ba2945efaf79544bee8e1c3872;hpb=831721ef493f89c152f86f04f21c4986d5cd5503 diff --git a/crypto/bio/b_print.c b/crypto/bio/b_print.c index 5a3ea8c3a5..4857cfe0ce 100644 --- a/crypto/bio/b_print.c +++ b/crypto/bio/b_print.c @@ -576,7 +576,7 @@ abs_val(LDOUBLE value) } static LDOUBLE -pow10(int in_exp) +pow_10(int in_exp) { LDOUBLE result = 1; while (in_exp) { @@ -640,8 +640,8 @@ fmtfp( /* we "cheat" by converting the fractional part to integer by multiplying by a factor of 10 */ - max10 = roundv(pow10(max)); - fracpart = roundv(pow10(max) * (ufvalue - intpart)); + max10 = roundv(pow_10(max)); + fracpart = roundv(pow_10(max) * (ufvalue - intpart)); if (fracpart >= max10) { intpart++;