diff options
author | Ron Yorston <rmy@pobox.com> | 2017-09-26 10:44:17 +0100 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2017-09-26 10:44:17 +0100 |
commit | 3cfc5cc69d02f6832da1060c814ad564a357f006 (patch) | |
tree | 5f13aba350aa50d69cd4869c7f06450c25ee74df | |
parent | 771dd3e88dad3030b5e1ebce9936bb600d4b567a (diff) | |
download | busybox-w32-3cfc5cc69d02f6832da1060c814ad564a357f006.tar.gz busybox-w32-3cfc5cc69d02f6832da1060c814ad564a357f006.tar.bz2 busybox-w32-3cfc5cc69d02f6832da1060c814ad564a357f006.zip |
win32: silence warning about unused parameter
-rw-r--r-- | win32/process.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/process.c b/win32/process.c index 16a2acc6e..6fecdfb9d 100644 --- a/win32/process.c +++ b/win32/process.c | |||
@@ -576,7 +576,7 @@ static int terminate_process(pid_t pid, int exit_code) | |||
576 | return ret; | 576 | return ret; |
577 | } | 577 | } |
578 | 578 | ||
579 | static int test_process(pid_t pid, int exit_code) | 579 | static int test_process(pid_t pid, int exit_code UNUSED_PARAM) |
580 | { | 580 | { |
581 | HANDLE process; | 581 | HANDLE process; |
582 | 582 | ||