STABLE14-windows-formatting-20050418

keep formatting consistent


(cherry picked from commit 66b82d3c10101b70abcbcc6933b439aa1904600f)
This commit is contained in:
Jeffrey Altman 2005-04-19 06:13:01 +00:00
parent d727ca2d4c
commit e8fffe63e6

View File

@ -1043,8 +1043,8 @@ void *pthread_getspecific(pthread_key_t key) {
void *rc = NULL; void *rc = NULL;
char **tsd = TlsGetValue(tsd_index); char **tsd = TlsGetValue(tsd_index);
if (tsd == NULL) if (tsd == NULL)
return NULL; return NULL;
if ((key > -1) && (key < PTHREAD_KEYS_MAX )) { if ((key > -1) && (key < PTHREAD_KEYS_MAX )) {
rc = (void *) *(tsd + key); rc = (void *) *(tsd + key);