aboutsummaryrefslogtreecommitdiff
path: root/procps/kill.c
diff options
context:
space:
mode:
Diffstat (limited to 'procps/kill.c')
-rw-r--r--procps/kill.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/procps/kill.c b/procps/kill.c
index 1f8206986..e418046e7 100644
--- a/procps/kill.c
+++ b/procps/kill.c
@@ -195,7 +195,7 @@ int kill_main(int argc, char **argv)
195 continue; 195 continue;
196 errors++; 196 errors++;
197 if (!quiet) 197 if (!quiet)
198 bb_perror_msg("cannot kill pid %u", (unsigned)*pl); 198 bb_perror_msg("can't kill pid %u", (unsigned)*pl);
199 } 199 }
200 } 200 }
201 free(pidList); 201 free(pidList);
@@ -214,7 +214,7 @@ int kill_main(int argc, char **argv)
214 bb_error_msg("bad pid '%s'", arg); 214 bb_error_msg("bad pid '%s'", arg);
215 errors++; 215 errors++;
216 } else if (kill(pid, signo) != 0) { 216 } else if (kill(pid, signo) != 0) {
217 bb_perror_msg("cannot kill pid %d", (int)pid); 217 bb_perror_msg("can't kill pid %d", (int)pid);
218 errors++; 218 errors++;
219 } 219 }
220 arg = *++argv; 220 arg = *++argv;