commit 9f87a4ba41137a5793c870bd1b9bf5181ca2ed27
parent d0cf0af3e133ec33cdd6696676b0d3b1f44bc756
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;
}