Fixed compiler warning in central header file mysql_priv.h.

This commit is contained in:
Vladislav Vaintroub 2011-06-03 15:06:13 +02:00
parent 80e14ddb88
commit 668d79e87c

View file

@ -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