aboutsummaryrefslogtreecommitdiffstats
path: root/os/various
diff options
context:
space:
mode:
Diffstat (limited to 'os/various')
-rw-r--r--os/various/shell.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/os/various/shell.c b/os/various/shell.c
index 611da6de0..9feef152a 100644
--- a/os/various/shell.c
+++ b/os/various/shell.c
@@ -156,10 +156,10 @@ static msg_t shell_thread(void *p) {
chprintf(chp, "\r\nlogout");
break;
}
- lp = _strtok(line, " \009", &tokp);
+ lp = _strtok(line, " \t", &tokp);
cmd = lp;
n = 0;
- while ((lp = _strtok(NULL, " \009", &tokp)) != NULL) {
+ while ((lp = _strtok(NULL, " \t", &tokp)) != NULL) {
if (n >= SHELL_MAX_ARGUMENTS) {
chprintf(chp, "too many arguments\r\n");
cmd = NULL;