Skip to content

Commit

Permalink
openssh_fixture.c: fix warning (#621)
Browse files Browse the repository at this point in the history
File: openssh_fixture.c

Notes:
Fix `portable_sleep` return type warning

Credit:
Will Cosgrove
  • Loading branch information
willco007 committed Sep 2, 2021
1 parent d9b4222 commit f0417cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/openssh_fixture.c
Expand Up @@ -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);
Expand Down

0 comments on commit f0417cb

Please sign in to comment.