diff options
author | Pedro Giffuni <pfg@apache.org> | 2016-04-10 02:27:05 +0000 |
---|---|---|
committer | Pedro Giffuni <pfg@apache.org> | 2016-04-10 02:27:05 +0000 |
commit | aaf15142bcbc44f0e06a3357d2b21ecf9c673d21 (patch) | |
tree | c72059f89d1e6b3ddf6dbe6da939ec1dd12aa79f /rsc | |
parent | 10458a24f4e6cc311e65fb80ce576fed39937be2 (diff) |
Drop redundant parenthesis.
Found with coccinelle: http://coccinelle.lip6.fr/
Currently only applied to C code.
Notes
Notes:
merged as: 429a15cc292a92c2f00be6febde7da66ed792b70
Diffstat (limited to 'rsc')
-rw-r--r-- | rsc/source/rscpp/cpp5.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rsc/source/rscpp/cpp5.c b/rsc/source/rscpp/cpp5.c index 41f42ebf0dfb..e75e8f91a51d 100644 --- a/rsc/source/rscpp/cpp5.c +++ b/rsc/source/rscpp/cpp5.c @@ -240,7 +240,7 @@ eval() opp->prec = opdope[OP_END]; /* And its precedence */ opp->skip = 0; /* Not skipping now */ binop = 0; -again: ; +again: #ifdef DEBUG_EVAL fprintf( pCppOut, "In #if at again: skip = %d, binop = %d, line is: %s", opp->skip, binop, infile->bptr); |