From e7430392612133bac81b4c3f5ba8a3b661447358 Mon Sep 17 00:00:00 2001 From: Fredrik Osterlind Date: Wed, 21 Dec 2011 10:51:23 +0100 Subject: [PATCH] no newline added by echo command --- apps/shell/shell-text.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/shell/shell-text.c b/apps/shell/shell-text.c index d80d3cb4e..67c816adc 100644 --- a/apps/shell/shell-text.c +++ b/apps/shell/shell-text.c @@ -75,7 +75,7 @@ PROCESS_THREAD(shell_echo_process, ev, data) { PROCESS_BEGIN(); - shell_output(&echo_command, data, (int)strlen(data), "\n", 1); + shell_output(&echo_command, data, (int)strlen(data), "", 0); PROCESS_END(); }