commit 0ee2df022f9a2b54b708960f23be30580b2b7c77
Author:     Roberto E. Vargas Caballero <[email protected]>
AuthorDate: Mon Jul 27 12:18:39 2015 +0200
Commit:     Roberto E. Vargas Caballero <[email protected]>
CommitDate: Mon Jul 27 12:18:39 2015 +0200

    Small style change in cpp.c

diff --git a/cc1/cpp.c b/cc1/cpp.c
index 7dab27e..3080dee 100644
--- a/cc1/cpp.c
+++ b/cc1/cpp.c
@@ -548,7 +548,7 @@ bool
 cpp(void)
 {
        static struct {
-               uint8_t tok;
+               uint8_t token;
                void (*fun)(void);
        } *bp, clauses [] = {
                {DEFINE, define},
@@ -574,9 +574,9 @@ cpp(void)
        lexmode = CPPMODE;
        setnamespace(NS_CPPCLAUSES);
        next();
-       for (bp = clauses; bp->tok && bp->tok != yytoken; ++bp)
+       for (bp = clauses; bp->token && bp->token != yytoken; ++bp)
                /* nothing */;
-       if (!bp->tok)
+       if (!bp->token)
                error("incorrect preprocessor directive");
        next();
        (*bp->fun)();

Reply via email to