aboutsummaryrefslogtreecommitdiffstats
path: root/os/various/shell/shell.c
diff options
context:
space:
mode:
Diffstat (limited to 'os/various/shell/shell.c')
-rw-r--r--os/various/shell/shell.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/os/various/shell/shell.c b/os/various/shell/shell.c
index 1b6662136..f699901ec 100644
--- a/os/various/shell/shell.c
+++ b/os/various/shell/shell.c
@@ -353,7 +353,7 @@ THD_FUNCTION(shellThread, p) {
#endif
chprintf(chp, SHELL_NEWLINE_STR);
- chprintf(chp, "ChibiOS/RT Shell"SHELL_NEWLINE_STR);
+ chprintf(chp, "ChibiOS/RT Shell" SHELL_NEWLINE_STR);
while (true) {
chprintf(chp, SHELL_PROMPT_STR);
if (shellGetLine(scfg, line, sizeof(line), shp)) {
@@ -372,7 +372,7 @@ THD_FUNCTION(shellThread, p) {
n = 0;
while ((lp = parse_arguments(NULL, &tokp)) != NULL) {
if (n >= SHELL_MAX_ARGUMENTS) {
- chprintf(chp, "too many arguments"SHELL_NEWLINE_STR);
+ chprintf(chp, "too many arguments" SHELL_NEWLINE_STR);
cmd = NULL;
break;
}
@@ -394,7 +394,7 @@ THD_FUNCTION(shellThread, p) {
else if (cmdexec(shell_local_commands, chp, cmd, n, args) &&
((scp == NULL) || cmdexec(scp, chp, cmd, n, args))) {
chprintf(chp, "%s", cmd);
- chprintf(chp, " ?"SHELL_NEWLINE_STR);
+ chprintf(chp, " ?" SHELL_NEWLINE_STR);
}
}
}