summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCyrill Gorcunov <gorcunov@gmail.com>2011-06-30 00:22:53 +0400
committerCyrill Gorcunov <gorcunov@gmail.com>2011-06-30 00:22:53 +0400
commit5b6c96b9fda678dae2e9796ffaeeb3224893d879 (patch)
treee17af90c13ab4ba13595dc794ccf38de5c9fe330
parent8a61142504909eaff49ca306620fc0b74cb2d5aa (diff)
downloadnasm-5b6c96b9fda678dae2e9796ffaeeb3224893d879.tar.gz
preproc: Alignment in loop
Just for easier reading Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
-rw-r--r--preproc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/preproc.c b/preproc.c
index 1759d03b..4eeda467 100644
--- a/preproc.c
+++ b/preproc.c
@@ -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 */