X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=src%2Fodhcp6c.c;h=ba11ced6d23af32e47676f40159951f6341fa6b9;hb=5b98f902f616bd9b96a2128587bc6995555a43c1;hp=3c6b3b05abd8db9eaeedb92dcf270dee90d8625b;hpb=7c733630c49f1c8a7a43e701fa0b849ab9e473a5;p=odhcp6c.git diff --git a/src/odhcp6c.c b/src/odhcp6c.c index 3c6b3b0..ba11ced 100644 --- a/src/odhcp6c.c +++ b/src/odhcp6c.c @@ -470,7 +470,7 @@ uint64_t odhcp6c_get_milli_time(void) { struct timespec t = {0, 0}; syscall(SYS_clock_gettime, CLOCK_MONOTONIC, &t); - return t.tv_sec * 1000 + t.tv_nsec / 1000000; + return ((uint64_t)t.tv_sec) * 1000 + ((uint64_t)t.tv_nsec) / 1000000; }