From: Jeffrey Altman Date: Tue, 19 Apr 2005 06:03:10 +0000 (+0000) Subject: windows-formatting-20050418 X-Git-Tag: openafs-devel-1_5_0~624 X-Git-Url: https://git.openafs.org/?p=openafs.git;a=commitdiff_plain;h=66b82d3c10101b70abcbcc6933b439aa1904600f windows-formatting-20050418 keep formatting consistent --- diff --git a/src/WINNT/pthread/pthread.c b/src/WINNT/pthread/pthread.c index 69ba51c..8531e61 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);