Skip to content

Commit

Permalink
MDEV-25683 fixup: MSVC warning C4018: signed/unsigned mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-m committed Oct 29, 2021
1 parent dbd6c6d commit fdc4c3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion storage/innobase/trx/trx0roll.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit fdc4c3a

Please sign in to comment.