Index: fusl/src/thread/pthread_getcpuclockid.c |
diff --git a/fusl/src/thread/pthread_getcpuclockid.c b/fusl/src/thread/pthread_getcpuclockid.c |
index 9df14fb68952463d5e4606ef19fa4f6ca043d2ec..75fcc588060e555b0ea60efcf10d783d01fbca29 100644 |
--- a/fusl/src/thread/pthread_getcpuclockid.c |
+++ b/fusl/src/thread/pthread_getcpuclockid.c |
@@ -1,7 +1,6 @@ |
#include "pthread_impl.h" |
-int pthread_getcpuclockid(pthread_t t, clockid_t *clockid) |
-{ |
- *clockid = (-t->tid-1)*8U + 6; |
- return 0; |
+int pthread_getcpuclockid(pthread_t t, clockid_t* clockid) { |
+ *clockid = (-t->tid - 1) * 8U + 6; |
+ return 0; |
} |