summaryrefslogtreecommitdiff
path: root/modules/examples
diff options
context:
space:
mode:
authorRainer Jung <rjung@apache.org>2009-01-03 17:27:56 +0000
committerRainer Jung <rjung@apache.org>2009-01-03 17:27:56 +0000
commitb010b34b87a9a66620f50c365d94374a6312f477 (patch)
tree8642496f5de597d8ded205c4625dc12ea7ae1d74 /modules/examples
parenta64dd8d8984acb48b7440d4db5ccbf0e490dec53 (diff)
downloadhttpd-b010b34b87a9a66620f50c365d94374a6312f477.tar.gz
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
Diffstat (limited to 'modules/examples')
-rw-r--r--modules/examples/mod_example_ipc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/examples/mod_example_ipc.c b/modules/examples/mod_example_ipc.c
index f540ec4043..cf5353f6fc 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 */