diff options
author | monty@mishka.local <> | 2005-07-18 15:33:18 +0300 |
---|---|---|
committer | monty@mishka.local <> | 2005-07-18 15:33:18 +0300 |
commit | 78c65b5adc2b5a7160820ceed8273b684cc1e8e8 (patch) | |
tree | 1505fc52926154e1f91d7d822237aa1b9352cb3f /mysys/my_bitmap.c | |
parent | 774916a902fd33a0d1260e9dd5dc9ecd181a8703 (diff) | |
download | mariadb-git-78c65b5adc2b5a7160820ceed8273b684cc1e8e8.tar.gz |
Cleanups during review
Changed defaults option --instance to --defaults-group-suffix
Changed option handling to allow --defaults-file, --defaults-extra-file and --defaults-group-suffix to be given in any order
Changed MYSQL_INSTANCE to MYSQL_GROUP_SUFFIX
mysql_print_defaults now understands --defaults-group-suffix
Remove usage of my_tempnam() (not safe function)
if( -> if ( and while( to while (
Diffstat (limited to 'mysys/my_bitmap.c')
-rw-r--r-- | mysys/my_bitmap.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mysys/my_bitmap.c b/mysys/my_bitmap.c index ba958b234d2..c70c0fa0754 100644 --- a/mysys/my_bitmap.c +++ b/mysys/my_bitmap.c @@ -152,6 +152,7 @@ my_bool bitmap_test_and_set(MY_BITMAP *map, uint bitmap_bit) bitmap_lock(map); res= bitmap_fast_test_and_set(map, bitmap_bit); bitmap_unlock(map); + return res; } uint bitmap_set_next(MY_BITMAP *map) |