diff options
author | smatz <smatz@openttd.org> | 2009-08-14 17:11:59 +0000 |
---|---|---|
committer | smatz <smatz@openttd.org> | 2009-08-14 17:11:59 +0000 |
commit | c5533ae4708d85dcdff8e53515e17ab593f7f361 (patch) | |
tree | 8fd6af1f0c5acb1263bb85643a19f5516a6822a5 /src/strgen | |
parent | 3108ff7ac667edf872ee96c6331f0f45e5253d98 (diff) | |
download | openttd-c5533ae4708d85dcdff8e53515e17ab593f7f361.tar.xz |
(svn r17168) -Codechange: apply coding style to if and while statements
Diffstat (limited to 'src/strgen')
-rw-r--r-- | src/strgen/strgen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/strgen/strgen.cpp b/src/strgen/strgen.cpp index d5213107f..e1d5435c2 100644 --- a/src/strgen/strgen.cpp +++ b/src/strgen/strgen.cpp @@ -621,7 +621,7 @@ static const CmdStruct *TranslateCmdForCompare(const CmdStruct *a) strcmp(a->cmd, "STRING3") == 0 || strcmp(a->cmd, "STRING4") == 0 || strcmp(a->cmd, "STRING5") == 0 || - strcmp(a->cmd, "RAW_STRING") == 0){ + strcmp(a->cmd, "RAW_STRING") == 0) { return FindCmd("STRING", 6); } |