OS/2: Fix compile breakage in apr_thread_mutex_timedlock() due to incorrect variable name.


git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1742215 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/locks/os2/thread_mutex.c b/locks/os2/thread_mutex.c
index 1efd6ac..fa2d2c1 100644
--- a/locks/os2/thread_mutex.c
+++ b/locks/os2/thread_mutex.c
@@ -95,7 +95,7 @@
                 timeout = 0;
             }
         }
-        rc = DosRequestMutexSem(mutex->hMutex, apr_time_as_msec(usec));
+        rc = DosRequestMutexSem(mutex->hMutex, apr_time_as_msec(timeout));
         if (rc == ERROR_TIMEOUT) {
             return APR_TIMEUP;
         }