mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2025-07-29 15:41:13 +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:
@ -1,3 +1,8 @@
|
|||||||
|
Thu Sep 18 11:32:20 CEST 2003 Daniel Veillard <daniel@veillard.com>
|
||||||
|
|
||||||
|
* python/libxslt.c: don't output errors to stdout by default
|
||||||
|
use stderr instead.
|
||||||
|
|
||||||
Thu Sep 18 11:28:43 CEST 2003 Daniel Veillard <daniel@veillard.com>
|
Thu Sep 18 11:28:43 CEST 2003 Daniel Veillard <daniel@veillard.com>
|
||||||
|
|
||||||
* libxslt/functions.c libxslt/numbers.c: small fixes w.r.t.
|
* libxslt/functions.c libxslt/numbers.c: small fixes w.r.t.
|
||||||
|
@ -572,7 +572,7 @@ libxslt_xsltErrorFuncHandler(ATTRIBUTE_UNUSED void *ctx, const char *msg,
|
|||||||
|
|
||||||
if (libxslt_xsltPythonErrorFuncHandler == NULL) {
|
if (libxslt_xsltPythonErrorFuncHandler == NULL) {
|
||||||
va_start(ap, msg);
|
va_start(ap, msg);
|
||||||
vfprintf(stdout, msg, ap);
|
vfprintf(stderr, msg, ap);
|
||||||
va_end(ap);
|
va_end(ap);
|
||||||
} else {
|
} else {
|
||||||
str = (char *) xmlMalloc(150);
|
str = (char *) xmlMalloc(150);
|
||||||
|
Reference in New Issue
Block a user