1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-25 14:33:52 +01:00

sys/shell/shell.c: command not found in one line

This commit is contained in:
Cenk Gündoğan 2015-08-12 13:16:37 +02:00
parent d67acba044
commit 4deb0213b9

View File

@ -199,8 +199,7 @@ static void handle_input_line(shell_t *shell, char *line)
print_help(shell->command_list);
}
else {
puts("shell: command not found:");
puts(argv[0]);
printf("shell: command not found: %s\n", argv[0]);
}
}
}