From e1a0d486e4804eae098571f1a6788394c2ee51ae Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Fri, 20 Oct 2006 13:28:22 +0000 Subject: message string changes, mostly for consistency, also -32 bytes in .rodata --- util-linux/switch_root.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'util-linux/switch_root.c') diff --git a/util-linux/switch_root.c b/util-linux/switch_root.c index f2d9b6e69..45290c942 100644 --- a/util-linux/switch_root.c +++ b/util-linux/switch_root.c @@ -111,12 +111,12 @@ int switch_root_main(int argc, char *argv[]) if (console) { close(0); if(open(console, O_RDWR) < 0) - bb_error_msg_and_die("Bad console '%s'",console); + bb_error_msg_and_die("bad console '%s'",console); dup2(0, 1); dup2(0, 2); } // Exec real init. (This is why we must be pid 1.) execv(argv[optind],argv+optind); - bb_error_msg_and_die("Bad init '%s'",argv[optind]); + bb_error_msg_and_die("bad init '%s'",argv[optind]); } -- cgit v1.2.3