From f2d830768bb464c09a09d6372404d21716fc9626 Mon Sep 17 00:00:00 2001 From: dbs Date: Thu, 20 Sep 2007 01:13:16 +0000 Subject: [PATCH] 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 --- Open-ILS/src/apachemods/mod_xmlent.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.11.0