Remove a warning for conversion double->long. This has impacts on Windows.
authorRichard Levitte <levitte@openssl.org>
Sun, 21 Mar 2004 22:39:52 +0000 (22:39 +0000)
committerRichard Levitte <levitte@openssl.org>
Sun, 21 Mar 2004 22:39:52 +0000 (22:39 +0000)
PR: 849

crypto/bio/b_print.c

index 960a049bcafda3d5197730931597ed9cdf34b8bb..decefc22767c34a6524c0cab4f292b2d868ac828 100644 (file)
@@ -641,9 +641,9 @@ fmtfp(
        multiplying by a factor of 10 */
     fracpart = roundv((pow10(max)) * (ufvalue - intpart));
 
        multiplying by a factor of 10 */
     fracpart = roundv((pow10(max)) * (ufvalue - intpart));
 
-    if (fracpart >= pow10(max)) {
+    if (fracpart >= (long)pow10(max)) {
         intpart++;
         intpart++;
-        fracpart -= pow10(max);
+        fracpart -= (long)pow10(max);
     }
 
     /* convert integer part */
     }
 
     /* convert integer part */