diff options
Diffstat (limited to 'coreutils')
-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 1a9660183..06c134a37 100644 --- a/coreutils/timeout.c +++ b/coreutils/timeout.c | |||
@@ -52,7 +52,7 @@ HANDLE child = INVALID_HANDLE_VALUE; | |||
52 | static void kill_child(void) | 52 | static void kill_child(void) |
53 | { | 53 | { |
54 | if (child != INVALID_HANDLE_VALUE) { | 54 | if (child != INVALID_HANDLE_VALUE) { |
55 | kill_SIGTERM_by_handle(child, 128+SIGTERM); | 55 | kill_SIGTERM_by_handle(child); |
56 | } | 56 | } |
57 | } | 57 | } |
58 | #endif | 58 | #endif |