Bugfix of fprint using correct output redirection (fix from last commit).

This commit is contained in:
carl 2019-02-24 00:45:35 +08:00
parent 41cb541e7e
commit 9622898131

View file

@ -610,9 +610,9 @@ static void _error(int class, char *fn, unsigned int ln, char* fmt, va_list ap)
#endif /* LINT */
if (fn)
fprint(stderr, "\"%s\", line %u: ", fn, ln);
fprint(STDERR, "\"%s\", line %u: ", fn, ln);
if (remark)
fprint(stderr, "%s ", remark);
doprnt(stderr, fmt, ap); /* contents of error */
fprint(stderr, "\n");
fprint(STDERR, "%s ", remark);
doprnt(STDERR, fmt, ap); /* contents of error */
fprint(STDERR, "\n");
}