diff options
author | unknown <bar@bar.mysql.r18.ru> | 2003-01-29 15:08:09 +0400 |
---|---|---|
committer | unknown <bar@bar.mysql.r18.ru> | 2003-01-29 15:08:09 +0400 |
commit | 2c2b14f9a2ca44e9e0d5c4eeb16f63305a4d535c (patch) | |
tree | 8f169a00789a20a5778e1bd68b7cc7ae9e045e55 /strings/str2int.c | |
parent | 231553039f63832fda515edfb80670de178da794 (diff) | |
download | mariadb-git-2c2b14f9a2ca44e9e0d5c4eeb16f63305a4d535c.tar.gz |
Reorganization to restore generating charset C files from conf files
Diffstat (limited to 'strings/str2int.c')
-rw-r--r-- | strings/str2int.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/strings/str2int.c b/strings/str2int.c index d7e6bb9aabc..2579f9d1aea 100644 --- a/strings/str2int.c +++ b/strings/str2int.c @@ -98,7 +98,7 @@ char *str2int(register const char *src, register int radix, long int lower, converted value (and the scale!) as *negative* numbers, so the sign is the opposite of what you might expect. */ - while (my_isspace(system_charset_info,*src)) src++; + while (my_isspace(my_charset_latin1,*src)) src++; sign = -1; if (*src == '+') src++; else if (*src == '-') src++, sign = 1; |