Commit fdc4c3a2 authored by Marko Mäkelä's avatar Marko Mäkelä

MDEV-25683 fixup: MSVC warning C4018: signed/unsigned mismatch

parent dbd6c6dc
......@@ -710,7 +710,7 @@ void trx_rollback_recovered(bool all)
std::vector<trx_t*> trx_list;
ut_a(srv_force_recovery <
(all ? SRV_FORCE_NO_TRX_UNDO : SRV_FORCE_NO_DDL_UNDO));
ulong(all ? SRV_FORCE_NO_TRX_UNDO : SRV_FORCE_NO_DDL_UNDO));
/*
Collect list of recovered ACTIVE transaction ids first. Once collected, no
......
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