X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=liblttng-ust%2Fclock.h;h=23294d2b8c2fdf771d043e775b83664ab3d19549;hb=dc190cc1f8ddccfa7b0b8323ed157afb29a0ebb7;hp=b5d3e77cd20b7383e1723087c3b43a54233b69d5;hpb=edc1b654ae3ec35b88b67056d0f662aca65743f8;p=lttng-ust.git diff --git a/liblttng-ust/clock.h b/liblttng-ust/clock.h index b5d3e77c..23294d2b 100644 --- a/liblttng-ust/clock.h +++ b/liblttng-ust/clock.h @@ -39,7 +39,7 @@ static __inline__ uint64_t trace_clock_read64(void) struct timespec ts; clock_gettime(CLOCK_MONOTONIC, &ts); - return (ts.tv_sec * 1000000000) + ts.tv_nsec; + return ((uint64_t) ts.tv_sec * 1000000000ULL) + ts.tv_nsec; } static __inline__ uint32_t trace_clock_freq_scale(void)