diff options
author | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-12-11 19:37:54 +0000 |
---|---|---|
committer | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-12-11 19:37:54 +0000 |
commit | ad46db9add5bb5d8190f8d0eba4372f1fe6faa8a (patch) | |
tree | f0098ed56c953c65c116714335a03400785a7f9a /qemu-common.h | |
parent | 807d517027d22869a3470b721a6c270f726d25e0 (diff) |
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
Diffstat (limited to 'qemu-common.h')
-rw-r--r-- | qemu-common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qemu-common.h b/qemu-common.h index cb5d46541e..d3df63ea01 100644 --- a/qemu-common.h +++ b/qemu-common.h @@ -104,7 +104,7 @@ char *pstrcat(char *buf, int buf_size, const char *s); int strstart(const char *str, const char *val, const char **ptr); int stristart(const char *str, const char *val, const char **ptr); time_t mktimegm(struct tm *tm); -int fls(int i); +int qemu_fls(int i); #define qemu_isalnum(c) isalnum((unsigned char)(c)) #define qemu_isalpha(c) isalpha((unsigned char)(c)) |