diff options
author | unknown <bar@bar.mysql.r18.ru> | 2003-01-29 17:31:20 +0400 |
---|---|---|
committer | unknown <bar@bar.mysql.r18.ru> | 2003-01-29 17:31:20 +0400 |
commit | 307ed01440291b47e938073666f5e77c62eefb8c (patch) | |
tree | 264982c7494f97fc034269d9b20c340299092a4b /strings/str2int.c | |
parent | 6a188877d440749e51aafdc98e4e656ae166d9ba (diff) | |
download | mariadb-git-307ed01440291b47e938073666f5e77c62eefb8c.tar.gz |
Move latin1 into a separarte file
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 2579f9d1aea..d328d64d899 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(my_charset_latin1,*src)) src++; + while (my_isspace(&my_charset_latin1,*src)) src++; sign = -1; if (*src == '+') src++; else if (*src == '-') src++, sign = 1; |