aboutsummaryrefslogtreecommitdiff
path: root/procps/kill.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-11-13 09:08:27 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2009-11-13 09:08:27 +0100
commit6331cf059ccfdf35f4e5a505cbae885094cc41b0 (patch)
treeccb4b4f0d96d9636861a75f7fc6c97b8b15bd306 /procps/kill.c
parentf4fee418ae9f5308b4d32bc8d4e618f779f3203f (diff)
downloadbusybox-w32-6331cf059ccfdf35f4e5a505cbae885094cc41b0.tar.gz
busybox-w32-6331cf059ccfdf35f4e5a505cbae885094cc41b0.tar.bz2
busybox-w32-6331cf059ccfdf35f4e5a505cbae885094cc41b0.zip
*: use "can't" instead of "cannot"
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
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;