From 5b6c96b9fda678dae2e9796ffaeeb3224893d879 Mon Sep 17 00:00:00 2001 From: Cyrill Gorcunov Date: Thu, 30 Jun 2011 00:22:53 +0400 Subject: [PATCH] preproc: Alignment in loop Just for easier reading Signed-off-by: Cyrill Gorcunov --- preproc.c | 6 +++--- 1 file 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 */ -- 2.11.4.GIT