summaryrefslogtreecommitdiff
path: root/physmem/zalloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'physmem/zalloc.c')
-rw-r--r--physmem/zalloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/physmem/zalloc.c b/physmem/zalloc.c
index 24cc677..810a088 100644
--- a/physmem/zalloc.c
+++ b/physmem/zalloc.c
@@ -111,7 +111,7 @@ static struct block *zone[ZONES] = { 0, };
/* Find the first bit set. The least significant bit is 1. If no bit
is set, return 0. FIXME: This can be optimized a lot, in an
archtecture dependent way. Add to libl4, like __l4_msb(). */
-inline unsigned int
+static inline unsigned int
wffs (l4_word_t nr)
{
unsigned int bit = 0;