From 3b7666956f413ae15b12ca91d3c5fe5f32265420 Mon Sep 17 00:00:00 2001 From: Adam Dunkels Date: Mon, 8 Aug 2011 22:26:44 +0200 Subject: [PATCH] Bugfix: removed extreanous asterix character --- apps/serial-shell/serial-shell.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/serial-shell/serial-shell.c b/apps/serial-shell/serial-shell.c index b5a7515c3..a59c0009b 100644 --- a/apps/serial-shell/serial-shell.c +++ b/apps/serial-shell/serial-shell.c @@ -72,7 +72,7 @@ shell_default_output(const char *text1, int len1, const char *text2, int len2) #if defined (__AVR__) printf("%s%s\r\n", text1, text2); #else - *printf("%.*s%.*s\r\n", len1, text1, len2, text2); + printf("%.*s%.*s\r\n", len1, text1, len2, text2); #endif }