Index: fusl/arch/x32/pthread_arch.h |
diff --git a/fusl/arch/x32/pthread_arch.h b/fusl/arch/x32/pthread_arch.h |
index ecb0bbfb04039f77fee354e49bd4858129df10e3..e764c987825c3ff09f4a4e02f9a3d2660efbeadc 100644 |
--- a/fusl/arch/x32/pthread_arch.h |
+++ b/fusl/arch/x32/pthread_arch.h |
@@ -1,8 +1,7 @@ |
-static inline struct pthread *__pthread_self() |
-{ |
- struct pthread *self; |
- __asm__ __volatile__ ("mov %%fs:0,%0" : "=r" (self) ); |
- return self; |
+static inline struct pthread* __pthread_self() { |
+ struct pthread* self; |
+ __asm__ __volatile__("mov %%fs:0,%0" : "=r"(self)); |
+ return self; |
} |
#define TP_ADJ(p) (p) |