~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/list.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:
59
59
  {
60
60
    next=root->next;
61
61
    if (free_data)
62
 
      free((uchar*) root->data);
63
 
    free((uchar*) root);
 
62
      free((unsigned char*) root->data);
 
63
    free((unsigned char*) root);
64
64
    root=next;
65
65
  }
66
66
}
91
91
  return last;
92
92
}
93
93
 
94
 
int list_walk(LIST *list, list_walk_action action, uchar* argument)
 
94
int list_walk(LIST *list, list_walk_action action, unsigned char* argument)
95
95
{
96
96
  while (list)
97
97
  {