From 66b82d3c10101b70abcbcc6933b439aa1904600f Mon Sep 17 00:00:00 2001 From: Jeffrey Altman Date: Tue, 19 Apr 2005 06:03:10 +0000 Subject: [PATCH] windows-formatting-20050418 keep formatting consistent --- src/WINNT/pthread/pthread.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/WINNT/pthread/pthread.c b/src/WINNT/pthread/pthread.c index 69ba51cdb..8531e61e0 100644 --- a/src/WINNT/pthread/pthread.c +++ b/src/WINNT/pthread/pthread.c @@ -1043,8 +1043,8 @@ void *pthread_getspecific(pthread_key_t key) { void *rc = NULL; char **tsd = TlsGetValue(tsd_index); - if (tsd == NULL) - return NULL; + if (tsd == NULL) + return NULL; if ((key > -1) && (key < PTHREAD_KEYS_MAX )) { rc = (void *) *(tsd + key); -- 2.39.5