1
0
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:
Will Cosgrove
2021-09-02 13:14:46 -07:00
committed by GitHub
parent d9b4222ef1
commit f0417cb196

View File

@ -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);