commit e7c4908bd2c86b302d5fe58877297ae1fcfefe23
parent e243f0fd1705a03b8f507750e8a4849b24d0f28d
Author: Andrej Kacian <ticho@claws-mail.org>
Date: Sun, 20 Jan 2019 19:15:04 +0100
Replace deprecated _sleep() with Sleep() in w32_unistd.c
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/common/w32_unistd.c b/src/common/w32_unistd.c
@@ -36,7 +36,7 @@ pid_t fork( void ){
}
unsigned int sleep( unsigned int seconds ){
- _sleep(seconds * 1000);
+ Sleep(seconds * 1000);
return 0;
}