Commit 32773212 authored by unknown's avatar unknown

Please the Sun C compiler by qualifying 'inline' as 'static inline'.

parent 2b5ec258
......@@ -27,7 +27,7 @@
#include <assert.h>
#include <m_string.h>
inline void bitmap_lock(MY_BITMAP* map)
static inline void bitmap_lock(MY_BITMAP* map)
{
#ifdef THREAD
if (map->thread_safe)
......@@ -35,7 +35,7 @@ inline void bitmap_lock(MY_BITMAP* map)
#endif
}
inline void bitmap_unlock(MY_BITMAP* map)
static inline void bitmap_unlock(MY_BITMAP* map)
{
#ifdef THREAD
if (map->thread_safe)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment