diff options
author | William A. Rowe Jr <wrowe@apache.org> | 2009-08-28 01:33:09 +0200 |
---|---|---|
committer | William A. Rowe Jr <wrowe@apache.org> | 2009-08-28 01:33:09 +0200 |
commit | ef81751829f96e6dcfc51c29ec3ba069f67c7ecb (patch) | |
tree | c130d14813252cc4d7b4a1f354a91525ee025dea /modules/debugging | |
parent | catch missing .h for install (diff) | |
download | apache2-ef81751829f96e6dcfc51c29ec3ba069f67c7ecb.tar.xz apache2-ef81751829f96e6dcfc51c29ec3ba069f67c7ecb.zip |
%.*s precision supposedly takes an int, according to gcc
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@808681 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/debugging')
-rw-r--r-- | modules/debugging/mod_dumpio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/debugging/mod_dumpio.c b/modules/debugging/mod_dumpio.c index b0a1a8b74d..56a34ae8cf 100644 --- a/modules/debugging/mod_dumpio.c +++ b/modules/debugging/mod_dumpio.c @@ -101,7 +101,7 @@ static void dumpit(ap_filter_t *f, apr_bucket *b, dumpio_conf_t *ptr) ap_log_error(APLOG_MARK | APLOG_NOERRNO, ptr->loglevel, 0, c->base_server, "mod_dumpio: %s (%s-%s): %.*s", f->frec->name, (APR_BUCKET_IS_METADATA(b)) ? "metadata" : "data", - b->type->name, logbytes, buf); + b->type->name, (int)logbytes, buf); #endif } } else { |