diff options
Diffstat (limited to 'srclib/apr/threadproc/win32/threadpriv.c')
-rw-r--r-- | srclib/apr/threadproc/win32/threadpriv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/srclib/apr/threadproc/win32/threadpriv.c b/srclib/apr/threadproc/win32/threadpriv.c index 0cbfe620..787c142c 100644 --- a/srclib/apr/threadproc/win32/threadpriv.c +++ b/srclib/apr/threadproc/win32/threadpriv.c @@ -41,7 +41,7 @@ APR_DECLARE(apr_status_t) apr_threadkey_private_create(apr_threadkey_t **key, APR_DECLARE(apr_status_t) apr_threadkey_private_get(void **new, apr_threadkey_t *key) { - if ((*new) = TlsGetValue(key->key)) { + if (((*new) = TlsGetValue(key->key))) { return APR_SUCCESS; } return apr_get_os_error(); |