From: Dmitry Kostjuchenko Date: Mon, 28 Nov 2016 18:16:34 +0000 (+0200) Subject: Removed tab spaces. X-Git-Tag: OpenSSL_1_1_1-pre1~2481 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=5d5eed4456ebc035893eedbcc4e32a9d065cecb3;hp=ec93a2921f6128ac931466ae171fba92a0eab45d Removed tab spaces. Reviewed-by: Rich Salz Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/1981) --- diff --git a/crypto/threads_pthread.c b/crypto/threads_pthread.c index 4ba47966a6..5b10f438b9 100644 --- a/crypto/threads_pthread.c +++ b/crypto/threads_pthread.c @@ -35,13 +35,13 @@ CRYPTO_RWLOCK *CRYPTO_THREAD_lock_new(void) pthread_mutexattr_init(&attr); pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE); - + if (pthread_mutex_init(lock, &attr) != 0) { pthread_mutexattr_destroy(&attr); OPENSSL_free(lock); return NULL; } - + pthread_mutexattr_destroy(&attr); # endif