From 838198455640d9339e91b31817ac5a9ae5d609a9 Mon Sep 17 00:00:00 2001 From: "izsh@fail0verflow.com" Date: Mon, 8 Feb 2010 11:58:40 +0000 Subject: [PATCH] Cosmetic changes, replace mismatched indentation --- client/cmdparser.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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; } -- 2.39.2