Skip to content

Commit

Permalink
One more try: Fix -Wconversion on GCC 4 to 9
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-m committed Mar 11, 2021
1 parent abe25c3 commit 4c2b6be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion storage/innobase/data/data0data.cc
Original file line number Diff line number Diff line change
Expand Up @@ -688,7 +688,7 @@ dtuple_convert_big_rec(
goto skip_field;
}

longest_i = mblob ? i + 1 : i;
longest_i = uint16_t(i + mblob);
longest = savings;

skip_field:
Expand Down

0 comments on commit 4c2b6be

Please sign in to comment.