From 1f9b352a0a7d94bc825a96b69fb6565aeb69e007 Mon Sep 17 00:00:00 2001 From: Stefan Seyfried Date: Sun, 24 Sep 2017 13:55:44 +0200 Subject: [PATCH] abstime: fix time_monotonic_ms on 32bit systems m) Origin commit data ------------------ Commit: https://github.com/neutrino-images/ni-neutrino/commit/1ba7969f62a43c589618439f3c34aeeb08338d7c Author: Stefan Seyfried Date: 2017-09-24 (Sun, 24 Sep 2017) --- src/driver/abstime.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/driver/abstime.c b/src/driver/abstime.c index e74c268c3..a242b7877 100644 --- a/src/driver/abstime.c +++ b/src/driver/abstime.c @@ -5,7 +5,7 @@ int64_t time_monotonic_ms(void) { struct timespec t; - time_t ret; + int64_t ret; if (clock_gettime(CLOCK_MONOTONIC, &t)) { perror("time_monotonic_ms clock_gettime");