From: c vw Date: Tue, 25 Jan 2022 14:38:18 +0000 (+0100) Subject: gpio.c: made millis() uint32_t to conform to i2c.c X-Git-Url: https://git.rkrishnan.org/pf/components/com_hotproperty?a=commitdiff_plain;h=f64f0c125f7c248184d76a784c83e02ad52756cf;p=pihpsdr.git gpio.c: made millis() uint32_t to conform to i2c.c --- diff --git a/gpio.c b/gpio.c index 70c349a..c4afa7e 100644 --- a/gpio.c +++ b/gpio.c @@ -349,7 +349,7 @@ static void initialiseEpoch() { epochMilli = (uint64_t)ts.tv_sec * (uint64_t)1000 + (uint64_t)(ts.tv_nsec / 1000000L) ; } -unsigned int millis () { +static uint32_t millis () { uint64_t now ; struct timespec ts ; clock_gettime (CLOCK_MONOTONIC_RAW, &ts) ;