~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_bitmap.h

  • 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:
134
134
  char *print(char *buf) const
135
135
  {
136
136
    char *s=buf;
137
 
    const uchar *e=(uchar *)buffer, *b=e+sizeof(buffer)-1;
 
137
    const unsigned char *e=(unsigned char *)buffer, *b=e+sizeof(buffer)-1;
138
138
    while (!*b && b>e)
139
139
      b--;
140
140
    if ((*s=_dig_vec_upper[*b >> 4]) != '0')