summaryrefslogtreecommitdiff
path: root/locks
diff options
context:
space:
mode:
authorYann Ylavic <ylavic@apache.org>2016-08-11 11:50:03 +0000
committerYann Ylavic <ylavic@apache.org>2016-08-11 11:50:03 +0000
commitbbc03e6870e18d4965283f6a95654a5c0809ab3e (patch)
tree651d8766c3bbd4979c260d83ade993273b5c87f5 /locks
parent792273af011d708179ae5ba83c0ed6c80fa40acc (diff)
downloadapr-bbc03e6870e18d4965283f6a95654a5c0809ab3e.tar.gz
Merge r1755954 from trunk:
apr_os_proc_mutex_get_ex: win32: fix typo (s/mutex/pmutex/) leading to: locks\win32\proc_mutex.c(252): error C2065: 'mutex' : undeclared identifier Submitted by: Ivan Zhakov <ivan visualsvn.com> Reviewed by: ylavic git-svn-id: https://svn.apache.org/repos/asf/apr/apr/branches/1.6.x@1755956 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'locks')
-rw-r--r--locks/win32/proc_mutex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/locks/win32/proc_mutex.c b/locks/win32/proc_mutex.c
index 9e227f762..b51f856c0 100644
--- a/locks/win32/proc_mutex.c
+++ b/locks/win32/proc_mutex.c
@@ -249,7 +249,7 @@ APR_DECLARE(apr_status_t) apr_os_proc_mutex_get_ex(apr_os_proc_mutex_t *ospmutex
apr_proc_mutex_t *pmutex,
apr_lockmech_e *mech)
{
- *ospmutex = mutex->handle;
+ *ospmutex = pmutex->handle;
if (mech) {
*mech = APR_LOCK_DEFAULT_TIMED;
}