From 47fcbe45d7160f6d92b07a49facd7e45c49265c6 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 ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/7f2d58f956b4e2801ce0b0b85036ace763af317f Author: Stefan Seyfried Date: 2017-09-24 (Sun, 24 Sep 2017) ------------------ This commit was generated by Migit --- 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");