diff options
author | bar@bar.mysql.r18.ru <> | 2003-01-29 17:31:20 +0400 |
---|---|---|
committer | bar@bar.mysql.r18.ru <> | 2003-01-29 17:31:20 +0400 |
commit | 735399a850528714ba43b6e7aec84aa9a8878321 (patch) | |
tree | 264982c7494f97fc034269d9b20c340299092a4b /strings/my_vsnprintf.c | |
parent | ff3eaaebe742d83aee425a3c6b81c020c16f71cd (diff) | |
download | mariadb-git-735399a850528714ba43b6e7aec84aa9a8878321.tar.gz |
Move latin1 into a separarte file
Diffstat (limited to 'strings/my_vsnprintf.c')
-rw-r--r-- | strings/my_vsnprintf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/strings/my_vsnprintf.c b/strings/my_vsnprintf.c index 8e185c168c6..dbfd2783a80 100644 --- a/strings/my_vsnprintf.c +++ b/strings/my_vsnprintf.c @@ -65,7 +65,7 @@ int my_vsnprintf(char *to, size_t n, const char* fmt, va_list ap) length= num_state= pre_zero= 0; for (;; fmt++) { - if (my_isdigit(my_charset_latin1,*fmt)) + if (my_isdigit(&my_charset_latin1,*fmt)) { if (!num_state) { |