Chromium Code Reviews

Unified Diff: fusl/src/misc/ffsl.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.
Jump to:
View side-by-side diff with in-line comments
Index: fusl/src/misc/ffsl.c
diff --git a/fusl/src/misc/ffsl.c b/fusl/src/misc/ffsl.c
index 0105c66af9d18946ce9b3f8616c8baa6c7a55cde..179321bef34447374a5a31360cfabcd4f20df50f 100644
--- a/fusl/src/misc/ffsl.c
+++ b/fusl/src/misc/ffsl.c
@@ -1,7 +1,6 @@
#include <strings.h>
#include "atomic.h"
-int ffsl(long i)
-{
- return i ? a_ctz_l(i)+1 : 0;
+int ffsl(long i) {
+ return i ? a_ctz_l(i) + 1 : 0;
}

Powered by Google App Engine