From: dbs Date: Thu, 20 Sep 2007 01:13:16 +0000 (+0000) Subject: Backport a cast to silence a type mismatch warning X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=f2d830768bb464c09a09d6372404d21716fc9626;p=Evergreen.git Backport a cast to silence a type mismatch warning git-svn-id: svn://svn.open-ils.org/ILS/branches/rel_1_2@7810 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;