[hackers] [scc] [cc1] Change utf8 character || Roberto E. Vargas Caballero

From: <git_AT_suckless.org>
Date: Fri, 17 Feb 2017 22:17:54 +0100 (CET)

commit 12c32ea64864af188a0da2827b207a171f6bc2e1
Author: Roberto E. Vargas Caballero <k0ga_AT_shike2.com>
AuthorDate: Fri Feb 17 22:08:01 2017 +0100
Commit: Roberto E. Vargas Caballero <k0ga_AT_shike2.com>
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
_AT_@ -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;
                 }
Received on Fri Feb 17 2017 - 22:17:54 CET

This archive was generated by hypermail 2.3.0 : Fri Feb 17 2017 - 22:24:19 CET