]> git.ipfire.org Git - thirdparty/shairport-sync.git/commitdiff
Add type check comment.
authorMike Brady <mikebrady@eircom.net>
Sat, 26 Mar 2016 21:36:40 +0000 (21:36 +0000)
committerMike Brady <mikebrady@eircom.net>
Sat, 26 Mar 2016 21:36:40 +0000 (21:36 +0000)
common.c

index f39c746b0d06def7d0f2a1039ec5c4058d9ec522..bc077732c631772d15a8402d7ca0efa17ce13ead 100644 (file)
--- a/common.c
+++ b/common.c
@@ -478,7 +478,7 @@ uint64_t get_absolute_time_in_fp() {
   struct timespec tn;
   // can't use CLOCK_MONOTONIC_RAW as it's not implemented in OpenWrt
   clock_gettime(CLOCK_MONOTONIC, &tn);
-  time_now_fp = ((uint64_t)tn.tv_sec << 32) + ((uint64_t)tn.tv_nsec << 32) / 1000000000;
+  time_now_fp = ((uint64_t)tn.tv_sec << 32) + ((uint64_t)tn.tv_nsec << 32) / 1000000000; // types okay
 #endif
 #ifdef COMPILE_FOR_OSX
   uint64_t time_now_mach;