summaryrefslogtreecommitdiff
path: root/apps/examples
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples')
-rw-r--r--apps/examples/telnetd/shell.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/examples/telnetd/shell.c b/apps/examples/telnetd/shell.c
index 69f348615..356c33738 100644
--- a/apps/examples/telnetd/shell.c
+++ b/apps/examples/telnetd/shell.c
@@ -93,9 +93,9 @@ static struct ptentry_s g_parsetab[] =
static void shell_help(int argc, char **argv)
{
- printf("Available commands:");
- printf(" help, ? - show help");
- printf(" exit - exit shell");
+ printf("Available commands:\n");
+ printf(" help, ? - show help\n");
+ printf(" exit - exit shell\n");
}
/****************************************************************************
@@ -157,8 +157,8 @@ int shell_session(int argc, char *argv[])
{
char line[128];
- printf("uIP command shell -- NuttX style");
- printf("Type '?' and return for help");
+ printf("uIP command shell -- NuttX style\n");
+ printf("Type '?' and return for help\n");
for(;;)
{