From 3822d2cc4f4a171fdcf8dcfa7c7338b889c43c61 Mon Sep 17 00:00:00 2001 From: Russell Belfer Date: Tue, 5 Aug 2014 15:06:45 -0700 Subject: Fix typo in timer normalization constants The effect of this would be that various update callbacks would not be made at the correct interval. --- src/util.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/util.h b/src/util.h index ca676c039..6e57ad8c3 100644 --- a/src/util.h +++ b/src/util.h @@ -419,7 +419,7 @@ GIT_INLINE(double) git__timer(void) scaling_factor = (double)info.numer / (double)info.denom; } - return (double)time * scaling_factor / 1.0E-9; + return (double)time * scaling_factor / 1.0E9; } #else @@ -431,13 +431,13 @@ GIT_INLINE(double) git__timer(void) struct timespec tp; if (clock_gettime(CLOCK_MONOTONIC, &tp) == 0) { - return (double) tp.tv_sec + (double) tp.tv_nsec / 1E-9; + return (double) tp.tv_sec + (double) tp.tv_nsec / 1.0E9; } else { /* Fall back to using gettimeofday */ struct timeval tv; struct timezone tz; gettimeofday(&tv, &tz); - return (double)tv.tv_sec + (double)tv.tv_usec / 1E-6; + return (double)tv.tv_sec + (double)tv.tv_usec / 1.0E6; } } -- cgit v1.2.1