Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(91)

Unified Diff: fusl/src/thread/__set_thread_area.c

Issue 1714623002: [fusl] clang-format fusl (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: headers too Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: fusl/src/thread/__set_thread_area.c
diff --git a/fusl/src/thread/__set_thread_area.c b/fusl/src/thread/__set_thread_area.c
index 152a6a216ba61e9eccbdd1f0738660af3f4f4097..55923f3835356fafd52b6c192f27781fabe18271 100644
--- a/fusl/src/thread/__set_thread_area.c
+++ b/fusl/src/thread/__set_thread_area.c
@@ -1,10 +1,9 @@
#include "pthread_impl.h"
-int __set_thread_area(void *p)
-{
+int __set_thread_area(void* p) {
#ifdef SYS_set_thread_area
- return __syscall(SYS_set_thread_area, p);
+ return __syscall(SYS_set_thread_area, p);
#else
- return -ENOSYS;
+ return -ENOSYS;
#endif
}

Powered by Google App Engine
This is Rietveld 408576698