diff options
-rw-r--r-- | src/util.c | 2 | ||||
-rw-r--r-- | src/util.h | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -182,7 +182,7 @@ int dup2atleast(int fd, int atleast) * @param ms The number of milliseconds to sleep, * must be less than 1000 */ -void msleep(int ms) +void msleep(unsigned ms) { struct timespec ts; ts.tv_sec = 0; @@ -89,7 +89,7 @@ int dup2atleast(int fd, int atleast); * @param ms The number of milliseconds to sleep, * must be less than 1000 */ -void msleep(int ms); +void msleep(unsigned ms); /** * Check whether a NUL-terminated string is encoded in UTF-8 |