Make error message more verbose

This commit is contained in:
Holger Vogt 2022-04-11 12:05:54 +02:00
parent 2915f8e991
commit 287406459a
1 changed files with 1 additions and 1 deletions

View File

@ -248,7 +248,7 @@ checkvalid(struct pnode *pn)
pn->pn_value->v_name); pn->pn_value->v_name);
else else
fprintf(cp_err, fprintf(cp_err,
"Error(parse.c--checkvalid): %s: zero length vector.\n", "Error(checkvalid): vector %s is not available or has zero length.\n",
pn->pn_value->v_name); pn->pn_value->v_name);
return (FALSE); return (FALSE);
} }