From e63fe3b8d058bed15d65728f8e9a7e4093040028 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Sat, 2 Aug 2014 03:38:31 +0200 Subject: Don't use exponential notation for integers --- src/fastd.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/fastd.h') diff --git a/src/fastd.h b/src/fastd.h index 5619e66..c52a690 100644 --- a/src/fastd.h +++ b/src/fastd.h @@ -439,7 +439,7 @@ static inline bool timespec_after(const struct timespec *tp1, const struct times /** Returns (\a tp1 - \a tp2) in milliseconds */ static inline int timespec_diff(const struct timespec *tp1, const struct timespec *tp2) { - return ((tp1->tv_sec - tp2->tv_sec))*1000 + (tp1->tv_nsec - tp2->tv_nsec)/1e6; + return ((tp1->tv_sec - tp2->tv_sec))*1000 + (tp1->tv_nsec - tp2->tv_nsec)/1000000; } /** -- cgit v1.2.3