summaryrefslogtreecommitdiff
path: root/strings/str2int.c
diff options
context:
space:
mode:
authorbar@bar.mysql.r18.ru <>2003-01-29 15:08:09 +0400
committerbar@bar.mysql.r18.ru <>2003-01-29 15:08:09 +0400
commit08129eea2b4aa1fb7d0d66917f8a1cde6ff99e5e (patch)
tree8f169a00789a20a5778e1bd68b7cc7ae9e045e55 /strings/str2int.c
parentb2c97a0f606cf4577bc766483958346a64f4fb42 (diff)
downloadmariadb-git-08129eea2b4aa1fb7d0d66917f8a1cde6ff99e5e.tar.gz
Reorganization to restore generating charset C files from conf files
Diffstat (limited to 'strings/str2int.c')
-rw-r--r--strings/str2int.c2
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;