Skip to content

Commit

Permalink
Merge fixup: -Wconversion
Browse files Browse the repository at this point in the history
In merge cc1d906 the 32-bit builds
were broken.
  • Loading branch information
dr-m committed Feb 28, 2022
1 parent 13076bd commit 08d39bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion storage/innobase/trx/trx0undo.cc
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ static uint16_t trx_undo_header_create(buf_block_t *undo_page, trx_id_t trx_id,
mtr->write<8,mtr_t::MAYBE_NOP>(*undo_page, free + TRX_UNDO_TRX_ID +
undo_page->frame, trx_id);
if (UNIV_UNLIKELY(mach_read_from_8(free + TRX_UNDO_TRX_NO +
undo_page->frame)))
undo_page->frame) != 0))
mtr->memset(undo_page, free + TRX_UNDO_TRX_NO, 8, 0);

/* Write TRX_UNDO_NEEDS_PURGE=1 and TRX_UNDO_LOG_START. */
Expand Down

0 comments on commit 08d39bd

Please sign in to comment.