summaryrefslogtreecommitdiff
path: root/libc/string/ffs.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/string/ffs.c')
-rw-r--r--libc/string/ffs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/string/ffs.c b/libc/string/ffs.c
index f7d94ebf0..241b7456f 100644
--- a/libc/string/ffs.c
+++ b/libc/string/ffs.c
@@ -48,7 +48,7 @@ int ffs(int i)
for (n = 0 ; i ; ++n) {
i >>= 1;
}
-
+
return n;
#endif
}