ref: e3b66dff7ca05a7ca74497a0275d1adaab88de8f
parent: 3b4a9b64611b6b71d9a19754caa6cb23731d7ba6
author: Roberto E. Vargas Caballero <k0ga@shike2.com>
date: Fri Feb 17 17:08:01 EST 2017
[cc1] Change utf8 character Due to some copy paste the code was using utf8 ' instead of using the ascii equivalents.
--- a/cc1/decl.c
+++ b/cc1/decl.c
@@ -188,7 +188,7 @@
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;
}