1
0
mirror of https://gitlab.gnome.org/GNOME/libxslt synced 2025-07-01 13:41:39 +03:00

don't output errors to stdout by default use stderr instead. Daniel

* python/libxslt.c: don't output errors to stdout by default
  use stderr instead.
Daniel
This commit is contained in:
Daniel Veillard
2003-09-18 09:33:13 +00:00
parent 1f23440f79
commit 95c248b603
2 changed files with 6 additions and 1 deletions

View File

@ -572,7 +572,7 @@ libxslt_xsltErrorFuncHandler(ATTRIBUTE_UNUSED void *ctx, const char *msg,
if (libxslt_xsltPythonErrorFuncHandler == NULL) {
va_start(ap, msg);
vfprintf(stdout, msg, ap);
vfprintf(stderr, msg, ap);
va_end(ap);
} else {
str = (char *) xmlMalloc(150);