You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@apache.org on 2014/07/02 14:51:20 UTC

svn commit: r1607352 - /httpd/httpd/trunk/server/mpm/winnt/child.c

Author: trawick
Date: Wed Jul  2 12:51:20 2014
New Revision: 1607352

URL: http://svn.apache.org/r1607352
Log:
Follow-up to r1606368: HANDLE is PVOID which is void * (fix format string)

Modified:
    httpd/httpd/trunk/server/mpm/winnt/child.c

Modified: httpd/httpd/trunk/server/mpm/winnt/child.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/server/mpm/winnt/child.c?rev=1607352&r1=1607351&r2=1607352&view=diff
==============================================================================
--- httpd/httpd/trunk/server/mpm/winnt/child.c (original)
+++ httpd/httpd/trunk/server/mpm/winnt/child.c Wed Jul  2 12:51:20 2014
@@ -1156,7 +1156,7 @@ void child_main(apr_pool_t *pconf, DWORD
                 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]);
                 }
             }