diff options
author | Konstantin Belousov <kib@FreeBSD.org> | 2008-11-03 10:14:47 +0000 |
---|---|---|
committer | Konstantin Belousov <kib@FreeBSD.org> | 2008-11-03 10:14:47 +0000 |
commit | 6f41f432e166a3d94cd25a84c7f4ff2bfedd3206 (patch) | |
tree | 431f03409ad2c1d53e907f9caee945ebda948a53 | |
parent | 714cb2219ca8a2124452c2737b1af8ef624844c8 (diff) |
Notes
-rw-r--r-- | lib/libc/string/ffsl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/string/ffsl.c b/lib/libc/string/ffsl.c index e39fd039dbc7..6a25afddc57b 100644 --- a/lib/libc/string/ffsl.c +++ b/lib/libc/string/ffsl.c @@ -41,7 +41,7 @@ ffsl(long mask) int bit; if (mask == 0) - return(0); + return (0); for (bit = 1; !(mask & 1); bit++) mask = (unsigned long)mask >> 1; return (bit); |