Index: fusl/src/thread/pthread_getspecific.c |
diff --git a/fusl/src/thread/pthread_getspecific.c b/fusl/src/thread/pthread_getspecific.c |
index d9342a560f7bc6c9341b27911ae353d03a78fb1f..08f49c58a3511008cfe07b8cc7448976c4562cca 100644 |
--- a/fusl/src/thread/pthread_getspecific.c |
+++ b/fusl/src/thread/pthread_getspecific.c |
@@ -1,10 +1,9 @@ |
#include "pthread_impl.h" |
#include <threads.h> |
-static void *__pthread_getspecific(pthread_key_t k) |
-{ |
- struct pthread *self = __pthread_self(); |
- return self->tsd[k]; |
+static void* __pthread_getspecific(pthread_key_t k) { |
+ struct pthread* self = __pthread_self(); |
+ return self->tsd[k]; |
} |
weak_alias(__pthread_getspecific, pthread_getspecific); |