1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-01-13 13:17:36 +03:00

use xmlBuf... if DEBUG_INPUT is defined

This commit is contained in:
Roumen Petrov 2012-08-04 05:09:56 +03:00 committed by Daniel Veillard
parent c15df7d4ee
commit 89b6f73aea

View File

@ -3246,7 +3246,7 @@ xmlParserInputBufferPush(xmlParserInputBufferPtr in,
#ifdef DEBUG_INPUT
xmlGenericError(xmlGenericErrorContext,
"I/O: pushed %d chars, buffer %d/%d\n",
nbchars, in->buffer->use, in->buffer->size);
nbchars, xmlBufUse(in->buffer), xmlBufLength(in->buffer));
#endif
return(nbchars);
}