~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/heap/hp_open.c

  • Committer: Brian Aker
  • Date: 2008-08-10 04:50:31 UTC
  • Revision ID: brian@tangent.org-20080810045031-8ak1sgfsfh8y2jse
HeadĀ ulongĀ conversion.

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
  info->lastkey= (uchar*) (info + 1);
46
46
  info->recbuf= (uchar*) (info->lastkey + share->max_key_length);
47
47
  info->mode= mode;
48
 
  info->current_record= (ulong) ~0L;            /* No current record */
 
48
  info->current_record= (uint32_t) ~0L;         /* No current record */
49
49
  info->lastinx= info->errkey= -1;
50
50
  return(info);
51
51
}