~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_bitmap.c

Removed ushort references.

Show diffs side-by-side

added added

removed removed

Lines of Context:
453
453
  assert(map->bitmap);
454
454
  *map->last_word_ptr&= ~map->last_word_mask; /*Reset last bits to zero*/
455
455
  while (m < end)
456
 
    res+= my_count_bits_ushort(*m++);
 
456
    res+= my_count_bits_uint16(*m++);
457
457
  return res;
458
458
}
459
459