From 89f0b3486dfea233e6000f9af95b39a3ea7fd96e Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Sat, 18 Nov 2006 22:04:09 +0000 Subject: rodata cleanup. "unable to" == "cannot". -300 bytes --- coreutils/rm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coreutils/rm.c') diff --git a/coreutils/rm.c b/coreutils/rm.c index 490694a..5df7d5f 100644 --- a/coreutils/rm.c +++ b/coreutils/rm.c @@ -38,7 +38,7 @@ int rm_main(int argc, char **argv) const char *base = bb_get_last_path_component(*argv); if ((base[0] == '.') && (!base[1] || ((base[1] == '.') && !base[2]))) { - bb_error_msg("cannot remove `.' or `..'"); + bb_error_msg("cannot remove '.' or '..'"); } else if (remove_file(*argv, flags) >= 0) { continue; } -- cgit v1.1