system_charset_info has been moved to /sql directory

and isn't used in libraries any longer
This commit is contained in:
unknown 2003-03-16 12:30:10 +04:00
commit 23f252855e
14 changed files with 43 additions and 41 deletions

View file

@ -267,7 +267,7 @@ uint my_b_vprintf(IO_CACHE *info, const char* fmt, va_list args)
/* Found one '%' */
}
/* Skipp if max size is used (to be compatible with printf) */
while (my_isdigit(system_charset_info, *fmt) || *fmt == '.' || *fmt == '-')
while (my_isdigit(&my_charset_latin1, *fmt) || *fmt == '.' || *fmt == '-')
fmt++;
if (*fmt == 's') /* String parameter */
{