From f5a172ce4e49e6b568ffc03597e10e66e8d84fc7 Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Wed, 7 Sep 2022 16:27:29 +0200 Subject: [PATCH] Make the Error message a Warning message, because ngspice may move on --- src/frontend/parse.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/frontend/parse.c b/src/frontend/parse.c index f38e0e00f..f73a8df1c 100644 --- a/src/frontend/parse.c +++ b/src/frontend/parse.c @@ -245,11 +245,11 @@ checkvalid(struct pnode *pn) !eq(pn->pn_value->v_name, "list")) { if (eq(pn->pn_value->v_name, "all")) fprintf(cp_err, - "Error: %s: no matching vectors.\n", + "Warning from checkvalid: %s: no matching vectors.\n", pn->pn_value->v_name); else fprintf(cp_err, - "Error(checkvalid): vector %s is not available or has zero length.\n", + "Warning from checkvalid: vector %s is not available or has zero length.\n", pn->pn_value->v_name); return (FALSE); }