~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/mi_cache.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:
35
35
 
36
36
#include "myisamdef.h"
37
37
 
38
 
int _mi_read_cache(IO_CACHE *info, uchar *buff, my_off_t pos, uint length,
 
38
int _mi_read_cache(IO_CACHE *info, unsigned char *buff, my_off_t pos, uint length,
39
39
                   int flag)
40
40
{
41
41
  uint read_length,in_buff_length;
42
42
  my_off_t offset;
43
 
  uchar *in_buff_pos;
 
43
  unsigned char *in_buff_pos;
44
44
 
45
45
  if (pos < info->pos_in_file)
46
46
  {