[open-ils-commits] r7763 - trunk/Open-ILS/src/apachemods
svn at svn.open-ils.org
svn at svn.open-ils.org
Thu Sep 6 20:55:15 EDT 2007
Author: dbs
Date: 2007-09-06 20:48:11 -0400 (Thu, 06 Sep 2007)
New Revision: 7763
Modified:
trunk/Open-ILS/src/apachemods/mod_xmlent.c
Log:
Hush a warning about XML_Size not being an int
Modified: trunk/Open-ILS/src/apachemods/mod_xmlent.c
===================================================================
--- trunk/Open-ILS/src/apachemods/mod_xmlent.c 2007-09-06 05:49:25 UTC (rev 7762)
+++ trunk/Open-ILS/src/apachemods/mod_xmlent.c 2007-09-07 00:48:11 UTC (rev 7763)
@@ -342,7 +342,7 @@
/* 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;
More information about the open-ils-commits
mailing list