From 891842cb512f1a4cb4104d966e07cb866dd5d7d9 Mon Sep 17 00:00:00 2001 From: Mateo de Mayo Date: Sat, 23 Oct 2021 22:25:56 -0300 Subject: [PATCH] os: Change os_nanosleep parameter to int64_t --- src/xrt/auxiliary/os/os_time.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xrt/auxiliary/os/os_time.h b/src/xrt/auxiliary/os/os_time.h index b502cbbf3..45e821486 100644 --- a/src/xrt/auxiliary/os/os_time.h +++ b/src/xrt/auxiliary/os/os_time.h @@ -69,7 +69,7 @@ extern "C" { * @ingroup aux_os_time */ static inline void -os_nanosleep(int32_t nsec) +os_nanosleep(int64_t nsec) { #if defined(XRT_OS_LINUX) struct timespec spec;