1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

sql_bitmap.h:

corrected compile error on some platforms


sql/sql_bitmap.h:
  corrected compile error on some platforms
This commit is contained in:
unknown
2005-06-02 23:47:31 +02:00
parent 01381046a1
commit 7b3cd08e9b

View File

@ -48,7 +48,7 @@ public:
void intersect(ulonglong map2buff)
{
MY_BITMAP map2;
bitmap_init(&map2, (uchar *)&map2buff, sizeof(ulonglong)*8, 0);
bitmap_init(&map2, (uint32 *)&map2buff, sizeof(ulonglong)*8, 0);
bitmap_intersect(&map, &map2);
}
void subtract(Bitmap& map2) { bitmap_subtract(&map, &map2.map); }