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 f91f7a2eec..ddb5c67dfe 100644
--- a/common/math.h
+++ b/common/math.h
@@ -98,7 +98,7 @@ static const char LogTable256[256] = {
};
inline int intLog2(uint32 v) {
- register uint32 t, tt;
+ uint32 t, tt;
if ((tt = v >> 16))
return (t = tt >> 8) ? 24 + LogTable256[t] : 16 + LogTable256[tt];