aboutsummaryrefslogtreecommitdiff
path: root/kill.c
diff options
context:
space:
mode:
Diffstat (limited to 'kill.c')
-rw-r--r--kill.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/kill.c b/kill.c
index fb3d72213..8745f63c1 100644
--- a/kill.c
+++ b/kill.c
@@ -218,9 +218,9 @@ extern int kill_main(int argc, char **argv)
218 pid_t* pidList; 218 pid_t* pidList;
219 219
220 pidList = find_pid_by_name( *argv); 220 pidList = find_pid_by_name( *argv);
221 if (!pidList) { 221 if (!pidList || *pidList<=0) {
222 all_found = FALSE; 222 all_found = FALSE;
223 error_msg( "%s: no process killed", *argv); 223 error_msg_and_die( "%s: no process killed", *argv);
224 } 224 }
225 225
226 for(; pidList && *pidList!=0; pidList++) { 226 for(; pidList && *pidList!=0; pidList++) {