Fix compiler warnings

This commit is contained in:
brenosilva
2011-04-27 21:54:16 +00:00
parent f468224a40
commit 1aa4cace65
3 changed files with 3 additions and 3 deletions

View File

@@ -859,7 +859,7 @@ static int hook_request_late(request_rec *r) {
if(msr->txcfg->stream_inbody_inspection && msr->msc_reqbody_read) {
const char *clen = NULL;
clen = apr_psprintf(msr->mp,"%d",msr->stream_input_length);
clen = apr_psprintf(msr->mp,"%"APR_SIZE_T_FMT,msr->stream_input_length);
if(clen)
apr_table_setn(r->headers_in, "Content-Length",clen);
}