From ab50f74d7fa3c1c96de54012ccc197c4800901c8 Mon Sep 17 00:00:00 2001 From: alberth Date: Sat, 20 Nov 2010 15:44:24 +0000 Subject: (svn r21273) -Codechange: Return values should start at the same line. --- src/command.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/command.cpp') diff --git a/src/command.cpp b/src/command.cpp index 8078e9a9e..1894244fc 100644 --- a/src/command.cpp +++ b/src/command.cpp @@ -318,9 +318,7 @@ bool IsValidCommand(uint32 cmd) { cmd &= CMD_ID_MASK; - return - cmd < lengthof(_command_proc_table) && - _command_proc_table[cmd].proc != NULL; + return cmd < lengthof(_command_proc_table) && _command_proc_table[cmd].proc != NULL; } /*! -- cgit v1.2.3-54-g00ecf