mirror of
https://github.com/libssh2/libssh2.git
synced 2025-07-29 13:01:14 +03:00
openssh_fixture.c: fix warning (#621)
File: openssh_fixture.c Notes: Fix `portable_sleep` return type warning Credit: Will Cosgrove
This commit is contained in:
@ -208,7 +208,7 @@ static int is_running_inside_a_container()
|
||||
#endif
|
||||
}
|
||||
|
||||
static unsigned int portable_sleep(unsigned int seconds)
|
||||
static void portable_sleep(unsigned int seconds)
|
||||
{
|
||||
#ifdef WIN32
|
||||
Sleep(seconds);
|
||||
|
Reference in New Issue
Block a user