Skip to content

Commit

Permalink
BUG 13413535 followup: Fix gcc warning
Browse files Browse the repository at this point in the history
--BZR--
revision-id: jorgen.loland@oracle.com-20120126123011-1itf0vxmzoddzrcc
property-branch-nick: mysql-5.5
property-file-info: ld7:file_id65:2@16c675df-0fcb-4bc9-8058-dcc011a37293:trunk%2Fibuf%2Fibuf0ibuf.c7:message25:Cast to avoid gcc warning4:path33:storage/innobase/ibuf/ibuf0ibuf.cee
testament3-sha1: 9ba81d8c32257cc718e1b1c820c5e5366754d4be
  • Loading branch information
Jorgen Loland committed Jan 26, 2012
1 parent a7c7dd9 commit 1caf511
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions storage/innobase/ibuf/ibuf0ibuf.c
Original file line number Diff line number Diff line change
Expand Up @@ -4094,7 +4094,7 @@ ibuf_set_del_mark(
(unsigned) buf_block_get_space(block),
(unsigned) buf_block_get_page_no(block),
(unsigned) page_get_n_recs(page),
btr_page_get_index_id(page));
(ulonglong) btr_page_get_index_id(page));
ut_ad(0);
}
}
Expand Down Expand Up @@ -4158,7 +4158,7 @@ ibuf_delete(
(unsigned) buf_block_get_space(block),
(unsigned) buf_block_get_page_no(block),
(unsigned) page_get_n_recs(page),
btr_page_get_index_id(page));
(ulonglong) btr_page_get_index_id(page));

ut_ad(0);
return;
Expand Down

0 comments on commit 1caf511

Please sign in to comment.