From 51df9aaa5562528dcf8fe1f5c207d15a6e5b7e65 Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Sun, 11 Oct 2020 21:12:29 +0200 Subject: [PATCH] =?UTF-8?q?remove=20non=20ascii=20character=20=C2=A7,=20wh?= =?UTF-8?q?ich=20leads=20to=20compiler=20warnings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/frontend/inpcom.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/frontend/inpcom.c b/src/frontend/inpcom.c index f5866a061..4576fc0b1 100644 --- a/src/frontend/inpcom.c +++ b/src/frontend/inpcom.c @@ -8502,14 +8502,14 @@ static void inp_check_syntax(struct card *deck) if (*cut_line == '*' || *cut_line == '\0') continue; // check for unusable leading characters and change them to '*' - if (strchr("=[]?()&%$§\"!:,", *cut_line)) { + if (strchr("=[]?()&%$\"!:,", *cut_line)) { if (ft_stricterror) { fprintf(stderr, "Error: '%c' is not allowed as first character in line %s.\n", *cut_line, cut_line); controlled_exit(EXIT_BAD); } else { if (!check_ch) { - fprintf(stderr, "Warning: Unusal leading characters like '%c' or others out of '= [] ? () & %$§\"!:,'\n", *cut_line); + fprintf(stderr, "Warning: Unusal leading characters like '%c' or others out of '= [] ? () & %$\"!:,'\n", *cut_line); fprintf(stderr, " in netlist or included files, will be replaced with '*'\n"); check_ch = 1; /* just one warning */ }