From f0417cb1967331c8dcb38a96ab889ecdf71f6dcb Mon Sep 17 00:00:00 2001 From: Will Cosgrove Date: Thu, 2 Sep 2021 13:14:46 -0700 Subject: [PATCH] openssh_fixture.c: fix warning (#621) File: openssh_fixture.c Notes: Fix `portable_sleep` return type warning Credit: Will Cosgrove --- tests/openssh_fixture.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/openssh_fixture.c b/tests/openssh_fixture.c index 0480c5d5..97f154e9 100644 --- a/tests/openssh_fixture.c +++ b/tests/openssh_fixture.c @@ -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);