From 76eac5aa0f1d6fc32e58079ed3a160c41a452900 Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Tue, 22 Jun 2021 11:59:27 +0200 Subject: [PATCH] Make error message more verbode --- src/frontend/inpcom.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/frontend/inpcom.c b/src/frontend/inpcom.c index 498ff83b9..3418b4a88 100644 --- a/src/frontend/inpcom.c +++ b/src/frontend/inpcom.c @@ -9050,7 +9050,8 @@ static void inp_check_syntax(struct card *deck) else { if (!check_ch) { fprintf(stderr, "Warning: Unusual leading characters like '%c' or others out of '= [] ? () & %% $\"!:,;\\f'\n", *cut_line); - fprintf(stderr, " in netlist or included files, will be replaced with '*'\n"); + fprintf(stderr, " in netlist or included files, will be replaced with '*'.\n"); + fprintf(stderr, " Check line no %d: %s\n\n", card->linenum_orig, cut_line); check_ch = 1; /* just one warning */ } *cut_line = '*';