use globalWarningStream()

This commit is contained in:
Garux
2018-03-21 04:12:06 +03:00
parent 54a98ed5e8
commit b1e2f26124
24 changed files with 47 additions and 47 deletions

View File

@@ -129,7 +129,7 @@ static void characters( void *user_data, const xmlChar *ch, int len ){
static void warning( void *user_data, const char *msg, ... ){
va_list args;
va_start( args, msg );
globalErrorStream() << "XML WARNING: " << FormattedVA( msg, args );
globalWarningStream() << "XML WARNING: " << FormattedVA( msg, args );
va_end( args );
}
static void error( void *user_data, const char *msg, ... ){