preproc: Alignment in loop

Just for easier reading

Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
This commit is contained in:
Cyrill Gorcunov 2011-06-30 00:22:53 +04:00
parent 8a61142504
commit 5b6c96b9fd

View File

@ -4733,9 +4733,9 @@ static Token *expand_id(Token * tline)
cur = tline;
while (cur->next &&
(cur->next->type == TOK_ID ||
cur->next->type == TOK_PREPROC_ID
|| cur->next->type == TOK_NUMBER))
(cur->next->type == TOK_ID ||
cur->next->type == TOK_PREPROC_ID ||
cur->next->type == TOK_NUMBER))
cur = cur->next;
/* If identifier consists of just one token, don't expand */