From 771465fed0cf50ee2dd790723245fc091699c324 Mon Sep 17 00:00:00 2001 From: rpj Date: Mon, 17 May 2004 01:38:02 +0000 Subject: re-indentation, bug fixes, hooks for pre-emptive async cancelation --- pthread_getspecific.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'pthread_getspecific.c') diff --git a/pthread_getspecific.c b/pthread_getspecific.c index c0fc95e..e48fa47 100644 --- a/pthread_getspecific.c +++ b/pthread_getspecific.c @@ -63,13 +63,13 @@ pthread_getspecific (pthread_key_t key) * ------------------------------------------------------ */ { - int lasterror = GetLastError(); - int lastWSAerror = WSAGetLastError(); + int lasterror = GetLastError (); + int lastWSAerror = WSAGetLastError (); void *ptr = TlsGetValue (key->key); - SetLastError( lasterror ); - WSASetLastError( lastWSAerror ); + SetLastError (lasterror); + WSASetLastError (lastWSAerror); return ptr; } -- cgit v1.2.3