summaryrefslogtreecommitdiff
path: root/locks
diff options
context:
space:
mode:
authorylavic <ylavic@13f79535-47bb-0310-9956-ffa450edef68>2016-08-11 11:50:03 +0000
committerylavic <ylavic@13f79535-47bb-0310-9956-ffa450edef68>2016-08-11 11:50:03 +0000
commite64ab9056621c13a0ae6002fdb1b11638db6a9f7 (patch)
tree651d8766c3bbd4979c260d83ade993273b5c87f5 /locks
parent39b98a4ef161fb85faf02578860d791bcd1aceba (diff)
downloadlibapr-e64ab9056621c13a0ae6002fdb1b11638db6a9f7.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: http://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;
}