summaryrefslogtreecommitdiff
path: root/sal/rtl/source/alloc_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'sal/rtl/source/alloc_impl.h')
-rw-r--r--sal/rtl/source/alloc_impl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sal/rtl/source/alloc_impl.h b/sal/rtl/source/alloc_impl.h
index 8ea038496dfa..3b63f07fe1f8 100644
--- a/sal/rtl/source/alloc_impl.h
+++ b/sal/rtl/source/alloc_impl.h
@@ -98,7 +98,7 @@ extern "C" {
static RTL_MEMORY_INLINE int
highbit(sal_Size n)
{
- register int k = 1;
+ int k = 1;
if (n == 0)
return (0);
@@ -131,7 +131,7 @@ highbit(sal_Size n)
static RTL_MEMORY_INLINE int
lowbit(sal_Size n)
{
- register int k = 1;
+ int k = 1;
if (n == 0)
return (0);