We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 599bec2 commit 9bea8ccCopy full SHA for 9bea8cc
code/logic/sanity.c
@@ -42,7 +42,7 @@ void fossil_sys_call_sleep(int milliseconds) {
42
#ifdef _WIN32
43
Sleep(milliseconds); // On Windows, use the Sleep function to sleep for the specified number of milliseconds.
44
#else
45
- usleep(milliseconds * 1000); // On Unix-like systems, use the usleep function to sleep for the specified number of microseconds.
+ sleep(milliseconds * 1000); // On Unix-like systems, use the usleep function to sleep for the specified number of microseconds.
46
#endif
47
}
48
0 commit comments