scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

commit a11e8815c38046241934f13a7719c724af0cb4bb
parent 7ee42919b3387df47b563fe9fe792ef0f7724365
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Sat,  9 Jan 2016 10:04:35 +0100

Fix comment typo

Diffstat:
Mcc1/decl.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cc1/decl.c b/cc1/decl.c @@ -615,7 +615,7 @@ identifier(struct decl *dcl) * Ugly workaround to solve function declarations. * A new context is added for the parameters, * so at this point curctx is incremented by - * one when sym was parsed. + * one since sym was parsed. */ --curctx; sym = install(NS_IDEN, sym);