diff options
author | erik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-04-18 01:09:29 +0000 |
---|---|---|
committer | erik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-04-18 01:09:29 +0000 |
commit | 954ef18ffb8a21b0d1f55c6683aa690c31eac547 (patch) | |
tree | ca0f7171b5d77e3ea71f4526a7c44bdfadd94b3a | |
parent | 8e4d2339fe13ce8e321c20b1c7a5b3d074c3b0ff (diff) | |
download | busybox-w32-954ef18ffb8a21b0d1f55c6683aa690c31eac547.tar.gz busybox-w32-954ef18ffb8a21b0d1f55c6683aa690c31eac547.tar.bz2 busybox-w32-954ef18ffb8a21b0d1f55c6683aa690c31eac547.zip |
Remove debug noise
-Erik
git-svn-id: svn://busybox.net/trunk/busybox@473 69ca8d6d-28ef-0310-b511-8ec308f3f277
-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 |