fix compiler warning; pow10 is also in math.h
authorNils Larsch <nils@openssl.org>
Thu, 5 May 2005 20:57:37 +0000 (20:57 +0000)
committerNils Larsch <nils@openssl.org>
Thu, 5 May 2005 20:57:37 +0000 (20:57 +0000)
crypto/bio/b_print.c

index 5a3ea8c3a539ce4eaaecdef68e1c08c96a3bd44c..4857cfe0ce841c558f3a50b4d91f5f3b30665acb 100644 (file)
@@ -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++;