diff options
author | monty@mysql.com <> | 2006-06-23 02:49:19 +0300 |
---|---|---|
committer | monty@mysql.com <> | 2006-06-23 02:49:19 +0300 |
commit | 4697deb43629d9ae9f087d84cb4bb933a96f7eb1 (patch) | |
tree | 58ab5561c26c742cf51ff01378a1d269f85b5637 /mysys/my_bitmap.c | |
parent | 649157954b79513263ecfa05ec57fce9999a0b7b (diff) | |
download | mariadb-git-4697deb43629d9ae9f087d84cb4bb933a96f7eb1.tar.gz |
Remove compiler warnings
Fixed wrong table flags type in ndbcluster that caused previous commit to fail
Diffstat (limited to 'mysys/my_bitmap.c')
-rw-r--r-- | mysys/my_bitmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysys/my_bitmap.c b/mysys/my_bitmap.c index 92b0cbb1371..2c85ce0bf04 100644 --- a/mysys/my_bitmap.c +++ b/mysys/my_bitmap.c @@ -101,7 +101,7 @@ static inline void bitmap_unlock(MY_BITMAP *map __attribute__((unused))) my_bool bitmap_init(MY_BITMAP *map, my_bitmap_map *buf, uint n_bits, - my_bool thread_safe) + my_bool thread_safe __attribute__((unused))) { DBUG_ENTER("bitmap_init"); if (!buf) |