diff options
author | Vladislav Vaintroub <wlad@montyprogram.com> | 2011-06-03 15:06:13 +0200 |
---|---|---|
committer | Vladislav Vaintroub <wlad@montyprogram.com> | 2011-06-03 15:06:13 +0200 |
commit | 668d79e87c75a916032447cedcab96b21908b089 (patch) | |
tree | d5de5a7bdc848f4347696e2fc512a8135e641048 /sql/mysql_priv.h | |
parent | 80e14ddb88636e6e96b86786a15ece7f1bd464af (diff) | |
download | mariadb-git-668d79e87c75a916032447cedcab96b21908b089.tar.gz |
Fixed compiler warning in central header file mysql_priv.h.
Diffstat (limited to 'sql/mysql_priv.h')
-rw-r--r-- | sql/mysql_priv.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/mysql_priv.h b/sql/mysql_priv.h index c60fc1937f7..1ab8936df4c 100644 --- a/sql/mysql_priv.h +++ b/sql/mysql_priv.h @@ -872,7 +872,7 @@ public: Lazy_string_str(const char *str_arg, size_t len_arg) : Lazy_string(), str(str_arg), len(len_arg) {} void copy_to(String *dst) const - { dst->copy(str, len, system_charset_info); } + { dst->copy(str, (uint32)len, system_charset_info); } }; class Lazy_string_num : public Lazy_string |