Make the Error message a Warning message,

because ngspice may move on
This commit is contained in:
Holger Vogt 2022-09-07 16:27:29 +02:00
parent 8ef0c03fa6
commit f5a172ce4e
1 changed files with 2 additions and 2 deletions

View File

@ -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);
}