Fix TIMESPEC_TO_CDTIME_T() on 32-bit arch.
authorJan Andres <jandres@gmx.net>
Sat, 17 Oct 2015 18:07:10 +0000 (20:07 +0200)
committerJan Andres <jandres@gmx.net>
Sat, 17 Oct 2015 18:07:10 +0000 (20:07 +0200)
Add ULL prefix to constant to ensure we get a 64-bit unsigned multiply.

src/daemon/utils_time.h

index 2cc84b5..6566a73 100644 (file)
@@ -72,7 +72,7 @@
   (tsp)->tv_sec = CDTIME_T_TO_TIME_T (cdt);                                  \
   (tsp)->tv_nsec = (long) CDTIME_T_TO_NS ((cdt) & 0x3fffffff);               \
 } while (0)
-#define TIMESPEC_TO_CDTIME_T(ts) NS_TO_CDTIME_T(1000000000 * (ts)->tv_sec + (ts)->tv_nsec)
+#define TIMESPEC_TO_CDTIME_T(ts) NS_TO_CDTIME_T(1000000000ULL * (ts)->tv_sec + (ts)->tv_nsec)
 
 cdtime_t cdtime (void);