From 30dacef8c954eaa85ddb1a7bfe73017ed1a1f8c5 Mon Sep 17 00:00:00 2001 From: Ilia Sharin Date: Mon, 7 Aug 2017 09:58:45 -0400 Subject: [PATCH] Switched to unsigned 64-bit type --- hardware.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hardware.c b/hardware.c index a6039ef..d9989a1 100644 --- a/hardware.c +++ b/hardware.c @@ -56,7 +56,7 @@ unsigned long GetTimer(unsigned long offset) clock_gettime(CLOCK_BOOTTIME, &tp); - int64_t res; + uint64_t res; res = tp.tv_sec; res *= 1000;