mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 10:14:19 +01:00
Fixed compiler warning in central header file mysql_priv.h.
This commit is contained in:
parent
80e14ddb88
commit
668d79e87c
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue