diff options
author | unknown <kroki/tomash@moonlight.intranet> | 2006-07-29 13:43:34 +0400 |
---|---|---|
committer | unknown <kroki/tomash@moonlight.intranet> | 2006-07-29 13:43:34 +0400 |
commit | 74214b8635c9373abe6ec8f9e7f5f990d13f9fe9 (patch) | |
tree | 392482e50ca6ab4d828672da8aa5721919eda571 /mysys | |
parent | 3c9ba0208ae236435f5bad462b41f0df72aaad28 (diff) | |
parent | 04d60b389701329d934ed2f7690cc2fd686b9f4a (diff) | |
download | mariadb-git-74214b8635c9373abe6ec8f9e7f5f990d13f9fe9.tar.gz |
Merge moonlight.intranet:/home/tomash/src/mysql_ab/tmp_merge
into moonlight.intranet:/home/tomash/src/mysql_ab/mysql-5.0-merge
configure.in:
Auto merged
man/Makefile.am:
Auto merged
mysys/my_bitmap.c:
Auto merged
scripts/make_binary_distribution.sh:
Auto merged
sql/field.cc:
Auto merged
sql/sql_locale.cc:
Auto merged
support-files/mysql.spec.sh:
Auto merged
mysql-test/t/mysqlbinlog.test:
Manual merge.
sql/sql_select.cc:
Manual merge.
Diffstat (limited to 'mysys')
-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 49c23aaeae5..3a83372b637 100644 --- a/mysys/my_bitmap.c +++ b/mysys/my_bitmap.c @@ -159,7 +159,7 @@ uint bitmap_set_next(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); |