aboutsummaryrefslogtreecommitdiff
path: root/common/math.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/math.h')
-rw-r--r--common/math.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/math.h b/common/math.h
index 2ad71cee65..d1f3e77abf 100644
--- a/common/math.h
+++ b/common/math.h
@@ -61,7 +61,7 @@ static const char LogTable256[256] = {
LT(7), LT(7), LT(7), LT(7), LT(7), LT(7), LT(7), LT(7)
};
-inline uint32 log2(uint32 v) {
+inline uint32 intLog2(uint32 v) {
register uint32 t, tt;
if ((tt = v >> 16))