1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-03-10 08:58:16 +03:00

Fix unused parameter warning without ICU

This commit is contained in:
Nick Wellnhofer 2017-11-09 17:56:31 +01:00
parent 86615e43bb
commit 772c06487b

View File

@ -1916,6 +1916,7 @@ static int
xmlEncInputChunk(xmlCharEncodingHandler *handler, unsigned char *out,
int *outlen, const unsigned char *in, int *inlen, int flush) {
int ret;
(void)flush;
if (handler->input != NULL) {
ret = handler->input(out, outlen, in, inlen);