From f39cb2fb73a94c4177e5467600360476dc01062f Mon Sep 17 00:00:00 2001 From: Christian Groessler Date: Thu, 12 Sep 2013 00:16:09 +0200 Subject: [PATCH] testcode/lib/tinyshell.c: fix error message --- testcode/lib/tinyshell.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testcode/lib/tinyshell.c b/testcode/lib/tinyshell.c index c325f3947..90fda52fd 100644 --- a/testcode/lib/tinyshell.c +++ b/testcode/lib/tinyshell.c @@ -408,7 +408,7 @@ static void cmd_verbose(void) verb = strtoul(arg1, &endptr, 10); if (verb > 255 || *endptr) { - printf("invalid verbosity level 0x%x\n", *endptr); + puts("invalid verbosity level"); return; }