diff options
author | Erik Andersen <andersen@codepoet.org> | 2000-04-18 01:09:29 +0000 |
---|---|---|
committer | Erik Andersen <andersen@codepoet.org> | 2000-04-18 01:09:29 +0000 |
commit | 5d68857b9cc6f454046dd1397af93890fd298d8e (patch) | |
tree | ca0f7171b5d77e3ea71f4526a7c44bdfadd94b3a | |
parent | a6c752201e9031b51a6d89349f1cec1f690f56ef (diff) | |
download | busybox-w32-5d68857b9cc6f454046dd1397af93890fd298d8e.tar.gz busybox-w32-5d68857b9cc6f454046dd1397af93890fd298d8e.tar.bz2 busybox-w32-5d68857b9cc6f454046dd1397af93890fd298d8e.zip |
Remove debug noise
-Erik
-rw-r--r-- | kill.c | 2 | ||||
-rw-r--r-- | procps/kill.c | 2 |
2 files changed, 0 insertions, 4 deletions
@@ -230,8 +230,6 @@ extern int kill_main(int argc, char **argv) | |||
230 | for(; pidList && pidList!=0; pidList++) { | 230 | for(; pidList && pidList!=0; pidList++) { |
231 | if (kill(*pidList, sig) != 0) | 231 | if (kill(*pidList, sig) != 0) |
232 | fatalError( "Could not kill pid '%d': %s\n", *pidList, strerror(errno)); | 232 | fatalError( "Could not kill pid '%d': %s\n", *pidList, strerror(errno)); |
233 | else | ||
234 | printf("killed %d\n", *pidList); | ||
235 | } | 233 | } |
236 | /* Note that we don't bother to free the memory | 234 | /* Note that we don't bother to free the memory |
237 | * allocated in findPidByName(). It will be freed | 235 | * 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) | |||
230 | for(; pidList && pidList!=0; pidList++) { | 230 | for(; pidList && pidList!=0; pidList++) { |
231 | if (kill(*pidList, sig) != 0) | 231 | if (kill(*pidList, sig) != 0) |
232 | fatalError( "Could not kill pid '%d': %s\n", *pidList, strerror(errno)); | 232 | fatalError( "Could not kill pid '%d': %s\n", *pidList, strerror(errno)); |
233 | else | ||
234 | printf("killed %d\n", *pidList); | ||
235 | } | 233 | } |
236 | /* Note that we don't bother to free the memory | 234 | /* Note that we don't bother to free the memory |
237 | * allocated in findPidByName(). It will be freed | 235 | * allocated in findPidByName(). It will be freed |