diff options
author | Yann Ylavic <ylavic@apache.org> | 2022-07-10 18:58:00 +0200 |
---|---|---|
committer | Yann Ylavic <ylavic@apache.org> | 2022-07-10 18:58:00 +0200 |
commit | 0f36af9db99bb405e1accd5777f335d3027c2676 (patch) | |
tree | 5ec9ba9de0bd6b65b436edcb4e86823ce586fc07 /server/mpm/winnt | |
parent | Follow-up to r1902572: Remove now unused #include. (diff) | |
download | apache2-0f36af9db99bb405e1accd5777f335d3027c2676.tar.xz apache2-0f36af9db99bb405e1accd5777f335d3027c2676.zip |
mpm_winnt: Fix compilation error.
server\mpm\winnt\child.c(1210,1): error C2440: 'initializing': cannot convert from 'worker_info' to 'worker_info *'
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1902636 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/mpm/winnt')
-rw-r--r-- | server/mpm/winnt/child.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/mpm/winnt/child.c b/server/mpm/winnt/child.c index 9b70d721b1..56b0f4d3d5 100644 --- a/server/mpm/winnt/child.c +++ b/server/mpm/winnt/child.c @@ -1207,7 +1207,7 @@ void child_main(apr_pool_t *pconf, DWORD parent_pid) while (threads_created) { - struct worker_info *info = workers[threads_created - 1]; + struct worker_info *info = &workers[threads_created - 1]; DWORD dwRet; if (time_remains < 0) |