mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
Rename fls to qemu_fls
Fix compiler warning on OSX, reported by Andreas Faerber. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5982 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
807d517027
commit
ad46db9add
3 changed files with 3 additions and 3 deletions
2
cutils.c
2
cutils.c
|
@ -97,7 +97,7 @@ time_t mktimegm(struct tm *tm)
|
|||
return t;
|
||||
}
|
||||
|
||||
int fls(int i)
|
||||
int qemu_fls(int i)
|
||||
{
|
||||
return 32 - clz32(i);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue