~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/mf_iocache2.c

Cleanup default character set.

Show diffs side-by-side

added added

removed removed

Lines of Context:
341
341
    }
342
342
    else
343
343
    {
344
 
      while (my_isdigit(&my_charset_latin1, *fmt)) {
 
344
      while (my_isdigit(&my_charset_utf8_general_ci, *fmt)) {
345
345
        minimum_width=(minimum_width * 10) + (*fmt - '0');
346
346
        fmt++;
347
347
      }
357
357
      }
358
358
      else
359
359
      {
360
 
        while (my_isdigit(&my_charset_latin1, *fmt)) {
 
360
        while (my_isdigit(&my_charset_utf8_general_ci, *fmt)) {
361
361
          precision=(precision * 10) + (*fmt - '0');
362
362
          fmt++;
363
363
        }