提交 a44e1b2f 编写于 作者: D Dr. Matthias St. Pierre

crypto/threads_win.c: fix preprocessor indentation

Reviewed-by: NMatt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/9860)
上级 c3656cc5
...@@ -24,15 +24,15 @@ CRYPTO_RWLOCK *CRYPTO_THREAD_lock_new(void) ...@@ -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;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册