Commit 5faf2fdc authored by Marko Mäkelä's avatar Marko Mäkelä

MDEV-33585 fixup: GCC -Wsign-compare

parent d8a60dd4
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment