Turn a bunch of Eprint calls into Wprint calls to indicate warnings instead of errors.

This commit is contained in:
Dianne Skoll
2022-03-12 10:27:58 -05:00
parent 5aaf19ffdb
commit 61d665ef7d
7 changed files with 38 additions and 19 deletions
+1 -1
View File
@@ -167,7 +167,7 @@ int DoFset(ParsePtr p)
/* Add the function definition */
FSet(func);
if (orig_namelen > VAR_NAME_LEN) {
Eprint("Warning: Function name `%s...' truncated to `%s'",
Wprint("Warning: Function name `%s...' truncated to `%s'",
func->name, func->name);
}
return OK;