summaryrefslogtreecommitdiff
path: root/mysys/my_error.c
diff options
context:
space:
mode:
authorunknown <root@home.(none)>2003-03-16 12:30:10 +0400
committerunknown <root@home.(none)>2003-03-16 12:30:10 +0400
commit23f252855e5dcb18ac55cf9ce303f61c28e06421 (patch)
treedba5acdcfade3de03935aa1867550c60b1e85696 /mysys/my_error.c
parent2aa9f207358c2c82c63e4e5ac6f952dbf6aeddec (diff)
downloadmariadb-git-23f252855e5dcb18ac55cf9ce303f61c28e06421.tar.gz
system_charset_info has been moved to /sql directory
and isn't used in libraries any longer
Diffstat (limited to 'mysys/my_error.c')
-rw-r--r--mysys/my_error.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysys/my_error.c b/mysys/my_error.c
index cd41589f366..6fd346c89f7 100644
--- a/mysys/my_error.c
+++ b/mysys/my_error.c
@@ -69,7 +69,7 @@ int my_error(int nr,myf MyFlags, ...)
else
{
/* Skipp if max size is used (to be compatible with printf) */
- while (my_isdigit(system_charset_info, *tpos) || *tpos == '.' || *tpos == '-')
+ while (my_isdigit(&my_charset_latin1, *tpos) || *tpos == '.' || *tpos == '-')
tpos++;
if (*tpos == 'l') /* Skipp 'l' argument */
tpos++;