diff options
Diffstat (limited to 'lib/libc/db/hash/hash_log2.c')
-rw-r--r-- | lib/libc/db/hash/hash_log2.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libc/db/hash/hash_log2.c b/lib/libc/db/hash/hash_log2.c index cbbfdc8419b4..33e0515e0b7e 100644 --- a/lib/libc/db/hash/hash_log2.c +++ b/lib/libc/db/hash/hash_log2.c @@ -41,8 +41,7 @@ __FBSDID("$FreeBSD$"); #include <db.h> u_int32_t -__log2(num) - u_int32_t num; +__log2(u_int32_t num) { u_int32_t i, limit; |