astyle formatting

This commit is contained in:
Daniel Marjamäki 2010-08-08 18:55:15 +02:00
parent 1d79c164c4
commit 195b48e81f
1 changed files with 4 additions and 4 deletions

View File

@ -297,10 +297,10 @@ int Token::firstWordEquals(const char *str, const char *word)
{
for (;;)
{
if (*str != *word)
{
if (*str == ' ' && *word == 0)
return 0;
if (*str != *word)
{
if (*str == ' ' && *word == 0)
return 0;
return 1;
}
else if (*str == 0)