diff options
author | root@home.(none) <> | 2003-03-16 12:30:10 +0400 |
---|---|---|
committer | root@home.(none) <> | 2003-03-16 12:30:10 +0400 |
commit | 5c6c54c09afe1658e03e3c365bb5f84ff2286d37 (patch) | |
tree | dba5acdcfade3de03935aa1867550c60b1e85696 /mysys/mf_iocache2.c | |
parent | 1daed63ed8af3c0819e276788b4caab841804d73 (diff) | |
download | mariadb-git-5c6c54c09afe1658e03e3c365bb5f84ff2286d37.tar.gz |
system_charset_info has been moved to /sql directory
and isn't used in libraries any longer
Diffstat (limited to 'mysys/mf_iocache2.c')
-rw-r--r-- | mysys/mf_iocache2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysys/mf_iocache2.c b/mysys/mf_iocache2.c index 8a7dfc7be09..bce08b9795b 100644 --- a/mysys/mf_iocache2.c +++ b/mysys/mf_iocache2.c @@ -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 */ { |