Author: jerenkrantz
Date: Thu Feb 3 16:12:15 2005
New Revision: 151265
URL: http://svn.apache.org/viewcvs?view=rev&rev=151265
Log:
If thread_num is long, this better be an %ld
MFC: 106653
Reviewed by: wrowe, nd, trawick
Modified:
httpd/httpd/branches/2.0.x/CHANGES
httpd/httpd/branches/2.0.x/server/mpm/winnt/child.c
Modified: httpd/httpd/branches/2.0.x/CHANGES
URL: http://svn.apache.org/viewcvs/httpd/httpd/branches/2.0.x/CHANGES?view=diff&r1=151264&r2=151265
==============================================================================
--- httpd/httpd/branches/2.0.x/CHANGES (original)
+++ httpd/httpd/branches/2.0.x/CHANGES Thu Feb 3 16:12:15 2005
@@ -1,5 +1,7 @@
Changes with Apache 2.0.53
+ *) Win32 MPM: Correct typo in debugging output. [William Rowe]
+
*) conf: Remove AddDefaultCharset from the default configuration because
setting a site-wide default does more harm than good. PR 23421.
[Roy Fielding]
Modified: httpd/httpd/branches/2.0.x/server/mpm/winnt/child.c
URL: http://svn.apache.org/viewcvs/httpd/httpd/branches/2.0.x/server/mpm/winnt/child.c?view=diff&r1=151264&r2=151265
==============================================================================
--- httpd/httpd/branches/2.0.x/server/mpm/winnt/child.c (original)
+++ httpd/httpd/branches/2.0.x/server/mpm/winnt/child.c Thu Feb 3 16:12:15 2005
@@ -691,7 +691,7 @@
ap_sb_handle_t *sbh;
ap_log_error(APLOG_MARK, APLOG_DEBUG, APR_SUCCESS, ap_server_conf,
- "Child %d: Worker thread %d starting.", my_pid, thread_num);
+ "Child %d: Worker thread %ld starting.", my_pid, thread_num);
while (1) {
conn_rec *c;
apr_int32_t disconnected;
@@ -752,7 +752,7 @@
(request_rec *) NULL);
ap_log_error(APLOG_MARK, APLOG_DEBUG, APR_SUCCESS, ap_server_conf,
- "Child %d: Worker thread %d exiting.", my_pid, thread_num);
+ "Child %d: Worker thread %ld exiting.", my_pid, thread_num);
}
|