Skip to content

Commit

Permalink
Fix of type, to make windows compiler happy.
Browse files Browse the repository at this point in the history
  • Loading branch information
sanja-byelkin committed Aug 3, 2018
1 parent aab5c55 commit 7749745
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sql/item_strfunc.cc
Expand Up @@ -1570,7 +1570,7 @@ String *Item_str_conv::val_str(String *str)
{
DBUG_ASSERT(fixed == 1);
String *res;
uint32 alloced_length, len;
size_t alloced_length, len;

if ((null_value= (!(res= args[0]->val_str(&tmp_value)) ||
str->alloc((alloced_length= res->length() * multiply)))))
Expand Down

0 comments on commit 7749745

Please sign in to comment.