From: Jeff Trawick Date: Wed, 2 Jul 2014 12:51:20 +0000 (+0000) Subject: Follow-up to r1606368: HANDLE is PVOID which is void * (fix format string) X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e6f786bb8c777d8e0136e2a10beab1ab0473ee98;p=thirdparty%2Fapache%2Fhttpd.git Follow-up to r1606368: HANDLE is PVOID which is void * (fix format string) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1607352 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/winnt/child.c b/server/mpm/winnt/child.c index dd3cf25345a..38217f57c1a 100644 --- a/server/mpm/winnt/child.c +++ b/server/mpm/winnt/child.c @@ -1156,7 +1156,7 @@ void child_main(apr_pool_t *pconf, DWORD parent_pid) if (0 == GetHandleInformation(child_events[i], &out_flags)) { ap_log_error(APLOG_MARK, APLOG_CRIT, apr_get_os_error(), ap_server_conf, APLOGNO(02644) - "Child: Event handle #%d (%ld) is invalid", + "Child: Event handle #%d (%pp) is invalid", i, child_events[i]); } }