commit 12c32ea64864af188a0da2827b207a171f6bc2e1
Author: Roberto E. Vargas Caballero <[email protected]>
AuthorDate: Fri Feb 17 22:08:01 2017 +0100
Commit: Roberto E. Vargas Caballero <[email protected]>
CommitDate: Fri Feb 17 22:08:01 2017 +0100
[cc1] Change utf8 character
Due to some copy paste the code was using utf8 ' instead of using
the ascii equivalents.
diff --git a/cc1/decl.c b/cc1/decl.c
index f321d28..488e8bd 100644
--- 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;
}