[Commits] 75bb5e457c2: fix of windows compiler warnings
revision-id: 75bb5e457c268baf8f8956595669fcea4ed04fe2 (mariadb-10.3.12-57-g75bb5e457c2) parent(s): 5b43dbb33e86cdd073274daf2f67439d00b0ceaa author: Oleksandr Byelkin committer: Oleksandr Byelkin timestamp: 2019-02-18 23:51:56 +0100 message: fix of windows compiler warnings --- sql/sql_binlog.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql/sql_binlog.cc b/sql/sql_binlog.cc index 8801e9a806f..60de2923a8f 100644 --- a/sql/sql_binlog.cc +++ b/sql/sql_binlog.cc @@ -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);
participants (1)
-
Oleksandr Byelkin