diff options
author | unknown <kroki/tomash@moonlight.intranet> | 2006-07-29 13:50:08 +0400 |
---|---|---|
committer | unknown <kroki/tomash@moonlight.intranet> | 2006-07-29 13:50:08 +0400 |
commit | 1d0f873d5665596505cddd7e74b34693b5241546 (patch) | |
tree | 3373d512679abd089a6fb09d9851a692c479063f /mysys/my_bitmap.c | |
parent | 74214b8635c9373abe6ec8f9e7f5f990d13f9fe9 (diff) | |
download | mariadb-git-1d0f873d5665596505cddd7e74b34693b5241546.tar.gz |
Fix after manual merge.
tests/mysql_client_test.c:
Fix after manual merge: add test for bug#21206.
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 3a83372b637..25ff2651e90 100644 --- a/mysys/my_bitmap.c +++ b/mysys/my_bitmap.c @@ -445,7 +445,7 @@ uint bitmap_get_first(const MY_BITMAP *map) { uchar *bitmap=map->bitmap; uint bit_found = MY_BIT_NONE; - uint bitmap_size=map->bitmap_size*8; + uint bitmap_size=map->bitmap_size; uint i; DBUG_ASSERT(map->bitmap); |