mirror of
https://github.com/opnsense/src.git
synced 2026-04-15 14:29:58 -04:00
Fix style.
This commit is contained in:
parent
714cb2219c
commit
6f41f432e1
1 changed files with 1 additions and 1 deletions
|
|
@ -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 a new issue