diff options
author | unknown <joerg@mysql.com> | 2005-03-04 12:31:30 +0100 |
---|---|---|
committer | unknown <joerg@mysql.com> | 2005-03-04 12:31:30 +0100 |
commit | b04c1ad7b7ee1f1921c191eb02a623f604dcf0aa (patch) | |
tree | b96da46e8166619a02449c530f8d64fce7182e99 /mysys/my_bitmap.c | |
parent | bd81deff4ae3fa401e81a356696384265d00155d (diff) | |
download | mariadb-git-b04c1ad7b7ee1f1921c191eb02a623f604dcf0aa.tar.gz |
Please the Sun C compiler by qualifying 'inline' as 'static inline'.mysql-4.0.24
Diffstat (limited to 'mysys/my_bitmap.c')
-rw-r--r-- | mysys/my_bitmap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysys/my_bitmap.c b/mysys/my_bitmap.c index 8834dda98e1..9662f219418 100644 --- a/mysys/my_bitmap.c +++ b/mysys/my_bitmap.c @@ -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) |