mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-15 10:17:20 +00:00
Fix style.
This commit is contained in:
parent
714cb2219c
commit
6f41f432e1
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=184586
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user