Skip to content

Commit

Permalink
fix of windows compiler warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
sanja-byelkin committed Feb 18, 2019
1 parent 5b43dbb commit 75bb5e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sql/sql_binlog.cc
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ void mysql_client_binlog_statement(THD* thd)
goto end;
}

decoded_len= my_base64_needed_decoded_length(coded_len);
decoded_len= my_base64_needed_decoded_length((int)coded_len);
if (!(buf= (char *) my_malloc(decoded_len, MYF(MY_WME))))
{
my_error(ER_OUTOFMEMORY, MYF(ME_FATALERROR), 1);
Expand Down

0 comments on commit 75bb5e4

Please sign in to comment.