propagate CmdsParse return value

This commit is contained in:
Philippe Teuwen
2019-04-19 00:47:51 +02:00
parent 38fc6e2290
commit 1b6a45ac17
46 changed files with 47 additions and 93 deletions

View File

@@ -193,7 +193,6 @@ static int CmdHelp(const char *Cmd) {
*/
int CmdScript(const char *Cmd) {
clearCommandBuffer();
CmdsParse(CommandTable, Cmd);
return 0;
return CmdsParse(CommandTable, Cmd);
}