~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/heap/hp_rnext.c

  • Committer: Brian Aker
  • Date: 2008-10-06 05:57:49 UTC
  • Revision ID: brian@tangent.org-20081006055749-svg700gciuqi0zu1
Remove all of uchar.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 
18
18
/* Read next record with the same key */
19
19
 
20
 
int heap_rnext(HP_INFO *info, uchar *record)
 
20
int heap_rnext(HP_INFO *info, unsigned char *record)
21
21
{
22
 
  uchar *pos;
 
22
  unsigned char *pos;
23
23
  HP_SHARE *share=info->s;
24
24
  HP_KEYDEF *keyinfo;
25
25
  
75
75
    if (pos)
76
76
    {
77
77
      memcpy(&pos, pos + (*keyinfo->get_key_length)(keyinfo, pos), 
78
 
             sizeof(uchar*));
 
78
             sizeof(unsigned char*));
79
79
      info->current_ptr = pos;
80
80
    }
81
81
    else