~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/mi_preload.c

  • Committer: Brian Aker
  • Date: 2008-10-06 06:47:29 UTC
  • Revision ID: brian@tangent.org-20081006064729-2i9mhjkzyvow9xsm
RemoveĀ uint.

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
 
41
41
int mi_preload(MI_INFO *info, uint64_t key_map, bool ignore_leaves)
42
42
{
43
 
  uint i;
 
43
  uint32_t i;
44
44
  uint32_t length, block_length= 0;
45
45
  unsigned char *buff= NULL;
46
46
  MYISAM_SHARE* share= info->s;
47
 
  uint keys= share->state.header.keys;
 
47
  uint32_t keys= share->state.header.keys;
48
48
  MI_KEYDEF *keyinfo= share->keyinfo;
49
49
  my_off_t key_file_length= share->state.state.key_file_length;
50
50
  my_off_t pos= share->base.keystart;