File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -174,7 +174,7 @@ page_zip_rec_needs_ext(
174
174
ulint zip_size) /*!< in: compressed page size in bytes, or 0 */
175
175
{
176
176
ut_ad(rec_size
177
- > (comp ? REC_N_NEW_EXTRA_BYTES : REC_N_OLD_EXTRA_BYTES));
177
+ > (ulint)( comp ? REC_N_NEW_EXTRA_BYTES : REC_N_OLD_EXTRA_BYTES));
178
178
ut_ad(ut_is_2pow(zip_size));
179
179
ut_ad(comp || !zip_size);
180
180
Original file line number Diff line number Diff line change @@ -174,7 +174,7 @@ page_zip_rec_needs_ext(
174
174
ulint zip_size) /*!< in: compressed page size in bytes, or 0 */
175
175
{
176
176
ut_ad(rec_size
177
- > (comp ? REC_N_NEW_EXTRA_BYTES : REC_N_OLD_EXTRA_BYTES));
177
+ > (ulint)( comp ? REC_N_NEW_EXTRA_BYTES : REC_N_OLD_EXTRA_BYTES));
178
178
ut_ad(ut_is_2pow(zip_size));
179
179
ut_ad(comp || !zip_size);
180
180
You can’t perform that action at this time.
0 commit comments