Skip to content

Commit a620985

Browse files
committed
MDEV-15373 post-push: fixing type mismatch alerted by windows build.
1 parent 685961a commit a620985

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

sql/rpl_rli.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1780,7 +1780,8 @@ gtid_pos_auto_create_tables(rpl_slave_state::gtid_pos_table **list_ptr)
17801780
p= strmake(p, plugin_name(*auto_engines)->str, FN_REFLEN - (p - buf));
17811781
table_name.str= buf;
17821782
table_name.length= p - buf;
1783-
table_case_convert(const_cast<char*>(table_name.str), table_name.length);
1783+
table_case_convert(const_cast<char*>(table_name.str),
1784+
static_cast<uint>(table_name.length));
17841785
entry= rpl_global_gtid_slave_state->alloc_gtid_pos_table
17851786
(&table_name, hton, rpl_slave_state::GTID_POS_AUTO_CREATE);
17861787
if (!entry)

0 commit comments

Comments
 (0)