abstime: fix time_monotonic_ms on 32bit systems

m)


Origin commit data
------------------
Commit: 1ba7969f62
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2017-09-24 (Sun, 24 Sep 2017)
This commit is contained in:
Stefan Seyfried
2017-09-24 13:55:44 +02:00
parent ea17090f16
commit 1f9b352a0a

View File

@@ -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");