shell: version: fix typo

This commit is contained in:
S.J.R. van Schaik 2017-07-27 12:15:44 +02:00
parent 4aa807a7b3
commit c6afcd1027

View file

@ -11,7 +11,7 @@ int shell_version(struct console *con, size_t argc, const char **argv)
if (argc < 1)
return -1;
fprintf(con->fp, "hello,%s\n", TBM_VERSION);
fprintf(con->fp, "hello %s\n", TBM_VERSION);
return 0;
}