Commit e2c90e36 authored by Alexey Botchkov's avatar Alexey Botchkov

Fix to quiet the compiler on Windows.

parent 624ad863
......@@ -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);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment