mirror of
https://github.com/libssh2/libssh2.git
synced 2025-08-01 11:26:53 +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
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
static unsigned int portable_sleep(unsigned int seconds)
|
static void portable_sleep(unsigned int seconds)
|
||||||
{
|
{
|
||||||
#ifdef WIN32
|
#ifdef WIN32
|
||||||
Sleep(seconds);
|
Sleep(seconds);
|
||||||
|
Reference in New Issue
Block a user