[hackers] [scc] Small style change in cpp.c || Roberto E. Vargas Caballero

From: <git_AT_suckless.org>
Date: Mon, 27 Jul 2015 17:09:31 +0200 (CEST)

commit 0ee2df022f9a2b54b708960f23be30580b2b7c77
Author: Roberto E. Vargas Caballero <k0ga_AT_shike2.com>
AuthorDate: Mon Jul 27 12:18:39 2015 +0200
Commit: Roberto E. Vargas Caballero <k0ga_AT_shike2.com>
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
_AT_@ -548,7 +548,7 @@ bool
 cpp(void)
 {
         static struct {
- uint8_t tok;
+ uint8_t token;
                 void (*fun)(void);
         } *bp, clauses [] = {
                 {DEFINE, define},
_AT_@ -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)();
Received on Mon Jul 27 2015 - 17:09:31 CEST

This archive was generated by hypermail 2.3.0 : Mon Jul 27 2015 - 17:12:15 CEST