diff options
| author | Ron Yorston <rmy@pobox.com> | 2021-08-11 10:45:22 +0100 |
|---|---|---|
| committer | Ron Yorston <rmy@pobox.com> | 2021-08-11 10:45:22 +0100 |
| commit | 602137d1637787c334a1b858e2d4e7a5feb3fb1b (patch) | |
| tree | 24656fa28fb6b328ecffbdb0c18fd13522f7e827 | |
| parent | e8bc6bbc96d4cb0b3b169dd88d3ac77b185a4f0f (diff) | |
| download | busybox-w32-602137d1637787c334a1b858e2d4e7a5feb3fb1b.tar.gz busybox-w32-602137d1637787c334a1b858e2d4e7a5feb3fb1b.tar.bz2 busybox-w32-602137d1637787c334a1b858e2d4e7a5feb3fb1b.zip | |
timeout: make child handle static
| -rw-r--r-- | coreutils/timeout.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ | |||
| 47 | #include "libbb.h" | 47 | #include "libbb.h" |
| 48 | 48 | ||
| 49 | #if ENABLE_PLATFORM_MINGW32 | 49 | #if ENABLE_PLATFORM_MINGW32 |
| 50 | HANDLE child = INVALID_HANDLE_VALUE; | 50 | static HANDLE child = INVALID_HANDLE_VALUE; |
| 51 | 51 | ||
| 52 | static void kill_child(void) | 52 | static void kill_child(void) |
| 53 | { | 53 | { |
