Sfoglia il codice sorgente

- cast both times to double for consistency

Bernhard Reutner-Fischer 16 anni fa
parent
commit
cf7b82ed31
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      libc/misc/time/time.c

+ 1 - 1
libc/misc/time/time.c

@@ -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