aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaolo \'Blaisorblade\' Giarrusso <blaisorblade@yahoo.it>2005-03-30 16:36:29 -0800
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-03-30 16:36:29 -0800
commit927f804e1d9921d499878f94701d26348a244343 (patch)
treee0b8311e33839a86e3f84a6a8c5e632579394da4
parentade05d5c38568078b747d3c192125c6d768d94be (diff)
downloadhistory-927f804e1d9921d499878f94701d26348a244343.tar.gz
[PATCH] uml: correct error message
With "Anthony Brock" <Anthony_Brock@ous.edu> Replace the message with a more meaningful one. Noted by Anthony Brock. Signed-off-by: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r--arch/um/kernel/um_arch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/um/kernel/um_arch.c b/arch/um/kernel/um_arch.c
index c75d1db0efc312..5c49d88eed3d07 100644
--- a/arch/um/kernel/um_arch.c
+++ b/arch/um/kernel/um_arch.c
@@ -47,7 +47,7 @@ char command_line[COMMAND_LINE_SIZE] = { 0 };
void add_arg(char *arg)
{
if (strlen(command_line) + strlen(arg) + 1 > COMMAND_LINE_SIZE) {
- printf("add_arg: Too much command line!\n");
+ printf("add_arg: Too many command line arguments!\n");
exit(1);
}
if(strlen(command_line) > 0)