name confusion with HP library function prototype (?)
authorUlf Möller <ulf@openssl.org>
Mon, 10 Dec 2001 18:52:42 +0000 (18:52 +0000)
committerUlf Möller <ulf@openssl.org>
Mon, 10 Dec 2001 18:52:42 +0000 (18:52 +0000)
crypto/bio/b_print.c

index 91a049406e4d7970bcb26dab2c4c1c8dcc285628..f0a50c29bed5547c7e7a649c9e5ede17ef384022 100644 (file)
@@ -569,7 +569,7 @@ pow10(int exp)
 }
 
 static long
-round(LDOUBLE value)
+roundv(LDOUBLE value)
 {
     long intpart;
     intpart = (long) value;
@@ -621,7 +621,7 @@ fmtfp(
 
     /* we "cheat" by converting the fractional part to integer by
        multiplying by a factor of 10 */
-    fracpart = round((pow10(max)) * (ufvalue - intpart));
+    fracpart = roundv((pow10(max)) * (ufvalue - intpart));
 
     if (fracpart >= pow10(max)) {
         intpart++;