From: izsh@fail0verflow.com Date: Mon, 8 Feb 2010 11:58:40 +0000 (+0000) Subject: Cosmetic changes, replace mismatched indentation X-Git-Tag: v1.0.0~368 X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/commitdiff_plain/838198455640d9339e91b31817ac5a9ae5d609a9 Cosmetic changes, replace mismatched indentation --- diff --git a/client/cmdparser.c b/client/cmdparser.c index 5a02b95e..6bb04164 100644 --- a/client/cmdparser.c +++ b/client/cmdparser.c @@ -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; }