scc

simple C compiler
git clone git://git.2f30.org/scc
Log | Files | Refs | README | LICENSE

commit 12c32ea64864af188a0da2827b207a171f6bc2e1
parent 0a4e0d2b962c78c25dca1099ddc66b9660951538
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Fri, 17 Feb 2017 22:08:01 +0100

[cc1] Change utf8 character

Due to some copy paste the code was using utf8 ' instead of using
the ascii equivalents.

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

diff --git a/cc1/decl.c b/cc1/decl.c @@ -188,7 +188,7 @@ parameter(struct decl *dcl) return NULL; } if (p && (funtp->prop & TK_R)) { - errorp("declaration for parameter ā€˜%sā€™ but no such parameter", + errorp("declaration for parameter '%s' but no such parameter", sym->name); return NULL; }