mirror of
https://github.com/webui-dev/webui
synced 2025-03-28 21:13:17 +00:00
Fix Linux build
This commit is contained in:
parent
8adcbeff30
commit
6a4ac339e6
@ -2579,7 +2579,7 @@ static void _webui_sleep(long unsigned int ms) {
|
||||
#else
|
||||
struct timespec req;
|
||||
req.tv_sec = ms / 1000; // Convert ms to seconds
|
||||
req.tv_nsec = (ms % 1000) * 1000000 L; // Convert remainder to nanoseconds
|
||||
req.tv_nsec = (ms % 1000) * 1000000L; // Convert remainder to nanoseconds
|
||||
nanosleep( & req, NULL);
|
||||
#endif
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user