summaryrefslogtreecommitdiffstats
path: root/crypto/threads_pthread.c
diff options
context:
space:
mode:
authorDmitry Kostjuchenko <dmitrykos@neutroncode.com>2016-11-28 20:16:34 +0200
committerRichard Levitte <levitte@openssl.org>2017-02-03 13:51:06 +0100
commitddb618d93bf6531c28618f1aabfdc064168fdbfc (patch)
treef74f38bc1e830932d877b5eef427dca1a094b7bd /crypto/threads_pthread.c
parent23e6bf041bc5a5404cfa847dba1d2b2878e6f48c (diff)
Removed tab spaces.
Reviewed-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/1981) (cherry picked from commit 5d5eed4456ebc035893eedbcc4e32a9d065cecb3)
Diffstat (limited to 'crypto/threads_pthread.c')
-rw-r--r--crypto/threads_pthread.c4
1 files changed, 2 insertions, 2 deletions
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