From: Joe Orton Date: Mon, 13 Sep 2004 10:39:37 +0000 (+0000) Subject: * modules/proxy/ajp_msg.c (ajp_msg_dump): Cast apr_size_t to unsigned X-Git-Tag: 2.1.1~279 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dd9b830d5d125ab39d9b7e3253d335eb707fb270;p=thirdparty%2Fapache%2Fhttpd.git * modules/proxy/ajp_msg.c (ajp_msg_dump): Cast apr_size_t to unsigned long to avoid the warning with %lx for 32-bit size_t too. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@105104 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/ajp_msg.c b/modules/proxy/ajp_msg.c index 2b5b4b80393..2c553d934cc 100644 --- a/modules/proxy/ajp_msg.c +++ b/modules/proxy/ajp_msg.c @@ -70,7 +70,7 @@ apr_status_t ajp_msg_dump(ajp_msg_t *msg, char *err) ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, NULL, "ajp_msg_dump(): %.4lx %s", - i, line); + (unsigned long)i, line); } return APR_SUCCESS;