~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/charset-def.c

MergeĀ fromĀ trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
142
142
#endif /* HAVE_UCA_COLLATIONS */
143
143
 
144
144
 
145
 
my_bool init_compiled_charsets(myf flags __attribute__((unused)))
 
145
bool init_compiled_charsets(myf flags __attribute__((unused)))
146
146
{
147
147
  CHARSET_INFO *cs;
148
148
 
352
352
  for (cs=compiled_charsets; cs->name; cs++)
353
353
    add_compiled_collation(cs);
354
354
  
355
 
  return FALSE;
 
355
  return false;
356
356
}