From: dbs Date: Fri, 7 Sep 2007 00:48:11 +0000 (+0000) Subject: Hush a warning about XML_Size not being an int X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=4542be42ce5e3edadd3fdc4fb5bb340becac7566;p=Evergreen.git Hush a warning about XML_Size not being an int git-svn-id: svn://svn.open-ils.org/ILS/trunk@7763 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/apachemods/mod_xmlent.c b/Open-ILS/src/apachemods/mod_xmlent.c index 84e7b3d823..2df9eb61c7 100644 --- a/Open-ILS/src/apachemods/mod_xmlent.c +++ b/Open-ILS/src/apachemods/mod_xmlent.c @@ -342,7 +342,7 @@ static int xmlEntHandler( ap_filter_t *f, apr_bucket_brigade *brigade ) { /* log and die on XML errors */ ap_log_rerror( APLOG_MARK, APLOG_ERR, 0, f->r, "XMLENT XML Parse Error: %s at line %d\n", XML_ErrorString(XML_GetErrorCode(ctx->parser)), - XML_GetCurrentLineNumber(ctx->parser)); + (int) XML_GetCurrentLineNumber(ctx->parser)); XML_ParserFree(parser); parser = NULL;