crypto/threads_win.c: fix preprocessor indentation

Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/9860)
This commit is contained in:
Dr. Matthias St. Pierre 2019-09-11 10:40:18 +02:00
parent c3656cc594
commit a44e1b2f20

View file

@ -24,15 +24,15 @@ CRYPTO_RWLOCK *CRYPTO_THREAD_lock_new(void)
return NULL; return NULL;
} }
#if !defined(_WIN32_WCE) # if !defined(_WIN32_WCE)
/* 0x400 is the spin count value suggested in the documentation */ /* 0x400 is the spin count value suggested in the documentation */
if (!InitializeCriticalSectionAndSpinCount(lock, 0x400)) { if (!InitializeCriticalSectionAndSpinCount(lock, 0x400)) {
OPENSSL_free(lock); OPENSSL_free(lock);
return NULL; return NULL;
} }
#else # else
InitializeCriticalSection(lock); InitializeCriticalSection(lock);
#endif # endif
return lock; return lock;
} }