mirror of
https://github.com/MariaDB/server.git
synced 2025-01-28 17:54:16 +01:00
Fix to quiet the compiler on Windows.
This commit is contained in:
parent
624ad863d0
commit
e2c90e36b4
1 changed files with 2 additions and 1 deletions
|
@ -5544,7 +5544,8 @@ static char *dup_str_aux(MEM_ROOT *root, const LEX_CSTRING &from,
|
|||
static char *dup_str_aux(MEM_ROOT *root, const char *from,
|
||||
CHARSET_INFO *fromcs, CHARSET_INFO *tocs)
|
||||
{
|
||||
return dup_str_aux(root, from, from ? strlen(from) : 0 , fromcs, tocs);
|
||||
return dup_str_aux(root, from, (uint) (from ? strlen(from) : 0),
|
||||
fromcs, tocs);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue