From: Rainer Jung Date: Sat, 3 Jan 2009 17:27:56 +0000 (+0000) Subject: Fix format type warning in mod_example_ipc.c. X-Git-Tag: 2.3.2~235 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b010b34b87a9a66620f50c365d94374a6312f477;p=thirdparty%2Fapache%2Fhttpd.git Fix format type warning in mod_example_ipc.c. Use APR_INT64_T_FMT instead of %d. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@731032 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/examples/mod_example_ipc.c b/modules/examples/mod_example_ipc.c index f540ec40434..cf5353f6fc7 100644 --- a/modules/examples/mod_example_ipc.c +++ b/modules/examples/mod_example_ipc.c @@ -315,8 +315,8 @@ static int exipc_handler(request_rec *r) */ timecamped += CAMPOUT; ap_log_error(APLOG_MARK, APLOG_NOERRNO | APLOG_NOTICE, - 0, r->server, "Child %ld camping out on mutex for %d " - "microseconds", + 0, r->server, "Child %ld camping out on mutex for %" APR_INT64_T_FMT + " microseconds", (long int) getpid(), timecamped); } /* Lock acquisition loop */