Skip to content

Commit

Permalink
MDEV-33585 fixup: GCC -Wsign-compare
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-m committed Apr 10, 2024
1 parent d8a60dd commit 5faf2fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion storage/innobase/os/os0file.cc
Original file line number Diff line number Diff line change
Expand Up @@ -679,7 +679,7 @@ SyncFileIO::execute(const IORequest& request)
{
ssize_t n_bytes;
ut_ad(m_n > 0);
ut_ad(m_n <= os_file_request_size_max);
ut_ad(size_t(m_n) <= os_file_request_size_max);

if (request.is_read()) {
#ifdef _WIN32
Expand Down

0 comments on commit 5faf2fd

Please sign in to comment.