aboutsummaryrefslogtreecommitdiff
path: root/util-linux/ipcrm.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 /util-linux/ipcrm.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 'util-linux/ipcrm.c')
-rw-r--r--util-linux/ipcrm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/ipcrm.c b/util-linux/ipcrm.c
index 5e18c2846..8b0b226d3 100644
--- a/util-linux/ipcrm.c
+++ b/util-linux/ipcrm.c
@@ -63,7 +63,7 @@ static int remove_ids(type_id type, int argc, char **argv)
63 ret = shmctl(id, IPC_RMID, NULL); 63 ret = shmctl(id, IPC_RMID, NULL);
64 64
65 if (ret) { 65 if (ret) {
66 bb_perror_msg("cannot remove id %s", argv[0]); 66 bb_perror_msg("can't remove id %s", argv[0]);
67 nb_errors++; 67 nb_errors++;
68 } 68 }
69 } 69 }