mirror of
https://github.com/apache/httpd.git
synced 2025-08-07 04:02:58 +03:00
Use APR_PID_T_FMT instead %d for pid logging.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@106903 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -1454,7 +1454,7 @@ PROXY_DECLARE(apr_status_t) ap_proxy_initialize_worker(proxy_worker *worker, ser
|
||||
apr_pool_cleanup_null);
|
||||
|
||||
ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, s,
|
||||
"proxy: initialized worker %d in child %d for (%s) min=%d max=%d smax=%d",
|
||||
"proxy: initialized worker %d in child %" APR_PID_T_FMT " for (%s) min=%d max=%d smax=%d",
|
||||
worker->id, getpid(), worker->hostname, worker->min,
|
||||
worker->hmax, worker->smax);
|
||||
|
||||
@@ -1470,7 +1470,7 @@ PROXY_DECLARE(apr_status_t) ap_proxy_initialize_worker(proxy_worker *worker, ser
|
||||
|
||||
rv = connection_constructor((void **)&(worker->cp->conn), worker, worker->cp->pool);
|
||||
ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, s,
|
||||
"proxy: initialized single connection worker %d in child %d for (%s)",
|
||||
"proxy: initialized single connection worker %" APR_PID_T_FMT " in child %d for (%s)",
|
||||
worker->id, getpid(), worker->hostname);
|
||||
}
|
||||
if (rv == APR_SUCCESS)
|
||||
|
Reference in New Issue
Block a user