syntax sugar

This commit is contained in:
iceman1001 2017-09-28 22:37:25 +02:00
commit 8dbc84dd07
2 changed files with 2 additions and 3 deletions

View file

@ -51,7 +51,7 @@ int CmdsParse(const command_t Commands[], const char *Cmd) {
int last_match = 0;
int matches = 0;
for (i=0; Commands[i].Name;i++) {
for (i=0; Commands[i].Name; i++) {
if( !strncmp(Commands[i].Name, cmd_name, strlen(cmd_name)) ) {
last_match = i;
matches++;