From: Erik Andersen Date: Tue, 18 Apr 2000 01:09:29 +0000 (-0000) Subject: Remove debug noise X-Git-Tag: 0_43~14 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=5d68857b9cc6f454046dd1397af93890fd298d8e;p=oweals%2Fbusybox.git Remove debug noise -Erik --- diff --git a/kill.c b/kill.c index 765a3f683..db4842457 100644 --- a/kill.c +++ b/kill.c @@ -230,8 +230,6 @@ extern int kill_main(int argc, char **argv) for(; pidList && pidList!=0; pidList++) { if (kill(*pidList, sig) != 0) fatalError( "Could not kill pid '%d': %s\n", *pidList, strerror(errno)); - else - printf("killed %d\n", *pidList); } /* Note that we don't bother to free the memory * allocated in findPidByName(). It will be freed diff --git a/procps/kill.c b/procps/kill.c index 765a3f683..db4842457 100644 --- a/procps/kill.c +++ b/procps/kill.c @@ -230,8 +230,6 @@ extern int kill_main(int argc, char **argv) for(; pidList && pidList!=0; pidList++) { if (kill(*pidList, sig) != 0) fatalError( "Could not kill pid '%d': %s\n", *pidList, strerror(errno)); - else - printf("killed %d\n", *pidList); } /* Note that we don't bother to free the memory * allocated in findPidByName(). It will be freed