Cosmetic changes, replace mismatched indentation

This commit is contained in:
izsh@fail0verflow.com 2010-02-08 11:58:40 +00:00
parent 5d5311a223
commit 8381984556

View file

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