diff options
author | kib <kib@FreeBSD.org> | 2008-11-03 10:14:47 +0000 |
---|---|---|
committer | kib <kib@FreeBSD.org> | 2008-11-03 10:14:47 +0000 |
commit | 2f0fec26d1f00542c759ebd153e7c91686217bc4 (patch) | |
tree | 431f03409ad2c1d53e907f9caee945ebda948a53 /lib/libc/string | |
parent | 299b48cc38813e81a9dd719e83e8183b293ca256 (diff) | |
download | FreeBSD-src-2f0fec26d1f00542c759ebd153e7c91686217bc4.zip FreeBSD-src-2f0fec26d1f00542c759ebd153e7c91686217bc4.tar.gz |
Fix style.
Diffstat (limited to 'lib/libc/string')
-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 e39fd03..6a25afd 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); |