]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
If thread_num is long, this better be an %ld
authorJustin Erenkrantz <jerenkrantz@apache.org>
Fri, 4 Feb 2005 00:12:15 +0000 (00:12 +0000)
committerJustin Erenkrantz <jerenkrantz@apache.org>
Fri, 4 Feb 2005 00:12:15 +0000 (00:12 +0000)
MFC: 106653
Reviewed by: wrowe, nd, trawick

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@151265 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
server/mpm/winnt/child.c

diff --git a/CHANGES b/CHANGES
index bc7edcc70d30467125351384a733a71c4e2f4653..f5f7bb517319bddc7761922361fbba9ed911c67b 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -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]
index 0fb47b9c510cde6677a28b696c7f8e84e5291718..1ee54caf25f55f7fdaecae0458347d8c49958c38 100644 (file)
@@ -691,7 +691,7 @@ static void worker_main(long thread_num)
     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 @@ static void worker_main(long thread_num)
                                         (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);
 }