~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/charset.c

  • Committer: Brian Aker
  • Date: 2008-07-23 00:11:39 UTC
  • Revision ID: brian@tangent.org-20080723001139-967ewfngqqotwb6e
Removed final uint dead types.

Show diffs side-by-side

added added

removed removed

Lines of Context:
176
176
  }
177
177
  if (from->tab_to_uni)
178
178
  {
179
 
    uint sz= MY_CS_TO_UNI_TABLE_SIZE*sizeof(uint16);
180
 
    if (!(to->tab_to_uni= (uint16*)  my_once_memdup((char*)from->tab_to_uni,
 
179
    uint sz= MY_CS_TO_UNI_TABLE_SIZE*sizeof(uint16_t);
 
180
    if (!(to->tab_to_uni= (uint16_t*)  my_once_memdup((char*)from->tab_to_uni,
181
181
                                                    sz, MYF(MY_WME))))
182
182
      goto err;
183
183
  }