diff options
Diffstat (limited to 'string/ffsll.c')
-rw-r--r-- | string/ffsll.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/string/ffsll.c b/string/ffsll.c index 2c89171d03..6bcfe125ef 100644 --- a/string/ffsll.c +++ b/string/ffsll.c @@ -24,8 +24,7 @@ /* Find the first bit set in I. */ int -ffsll (i) - long long int i; +ffsll (long long int i) { unsigned long long int x = i & -i; |