OSDN Git Service

- cast both times to double for consistency
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Thu, 25 Sep 2008 16:12:29 +0000 (16:12 -0000)
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Thu, 25 Sep 2008 16:12:29 +0000 (16:12 -0000)
libc/misc/time/time.c

index ed135c5..97fbad5 100644 (file)
@@ -531,7 +531,7 @@ double difftime(time_t time1, time_t time0)
 #if (LONG_MAX >> DBL_MANT_DIG) == 0
 
        /* time_t fits in the mantissa of a double. */
-       return ((double) time1) - time0;
+       return (double)time1 - (double)time0;
 
 #elif ((LONG_MAX >> DBL_MANT_DIG) >> DBL_MANT_DIG) == 0