From 602137d1637787c334a1b858e2d4e7a5feb3fb1b Mon Sep 17 00:00:00 2001 From: Ron Yorston Date: Wed, 11 Aug 2021 10:45:22 +0100 Subject: timeout: make child handle static --- coreutils/timeout.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coreutils/timeout.c b/coreutils/timeout.c index 204a7ab92..b161f4e91 100644 --- a/coreutils/timeout.c +++ b/coreutils/timeout.c @@ -47,7 +47,7 @@ #include "libbb.h" #if ENABLE_PLATFORM_MINGW32 -HANDLE child = INVALID_HANDLE_VALUE; +static HANDLE child = INVALID_HANDLE_VALUE; static void kill_child(void) { -- cgit v1.2.3-55-g6feb