~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to vio/vio.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:
100
100
 
101
101
  if (vio->type != VIO_CLOSED)
102
102
    vio->vioclose(vio);
103
 
  free((uchar*) vio->read_buffer);
104
 
  free((uchar*) vio);
 
103
  free((unsigned char*) vio->read_buffer);
 
104
  free((unsigned char*) vio);
105
105
}
106
106
 
107
107