From e23e67d6d15bdb73a96db836a6275a08ce7adc08 Mon Sep 17 00:00:00 2001 From: Chris Young Date: Tue, 9 Aug 2016 20:25:05 +0100 Subject: The EClock frequency is unsigned --- src/time.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/time.c b/src/time.c index 1f79857..8c856d7 100644 --- a/src/time.c +++ b/src/time.c @@ -62,7 +62,7 @@ nsuerror nsu_getmonotonic_ms(uint64_t *current_out) current = (mts.tv_sec * 1000) + (mts.tv_nsec / 1000000); #elif defined(__amiga) struct EClockVal eclockval; - int freq = 0; + uint32 freq = 0; uint64_t eclock; /* NB: The calling task must already have opened timer.device -- cgit v1.2.3