esh: fix missing linefeed after source error message

This commit is contained in:
K. Lange 2018-10-30 21:06:47 +09:00
parent 8c4997e369
commit a8b39ada97

View File

@ -1908,7 +1908,7 @@ uint32_t shell_cmd_source(int argc, char * argv[]) {
FILE * f = fopen(argv[1], "r");
if (!f) {
fprintf(stderr, "%s: %s: %s", argv[0], argv[1], strerror(errno));
fprintf(stderr, "%s: %s: %s\n", argv[0], argv[1], strerror(errno));
return 1;
}