You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by wr...@apache.org on 2004/11/26 21:10:44 UTC

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

Author: wrowe
Date: Fri Nov 26 12:10:41 2004
New Revision: 106653

URL: http://svn.apache.org/viewcvs?view=rev&rev=106653
Log:

  If thread_num is long, this better be an %ld

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

Modified: httpd/httpd/trunk/server/mpm/winnt/child.c
Url: http://svn.apache.org/viewcvs/httpd/httpd/trunk/server/mpm/winnt/child.c?view=diff&rev=106653&p1=httpd/httpd/trunk/server/mpm/winnt/child.c&r1=106652&p2=httpd/httpd/trunk/server/mpm/winnt/child.c&r2=106653
==============================================================================
--- httpd/httpd/trunk/server/mpm/winnt/child.c	(original)
+++ httpd/httpd/trunk/server/mpm/winnt/child.c	Fri Nov 26 12:10:41 2004
@@ -737,7 +737,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;
@@ -799,7 +799,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);
 }