Skip to content

Commit 1f69ff4

Browse files
author
Jan Lindström
committed
Fix compiler error on Windows.
1 parent 56c4b01 commit 1f69ff4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

storage/xtradb/os/os0file.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5303,16 +5303,16 @@ os_aio_windows_handle(
53035303
case OS_FILE_WRITE:
53045304
if (slot->message1 && slot->page_compression && slot->page_buf) {
53055305
ret_val = os_file_write(slot->name, slot->file, slot->page_buf,
5306-
slot->offset, slot->len);
5306+
slot->offset, slot->len);
53075307
} else {
53085308

53095309
ret_val = os_file_write(slot->name, slot->file, slot->buf,
5310-
slot->offset, slot->len);
5310+
slot->offset, slot->len);
53115311
}
53125312
break;
53135313
case OS_FILE_READ:
53145314
ret_val = os_file_read(slot->file, slot->buf,
5315-
slot->offset, slot->len);
5315+
slot->offset, slot->len, slot->page_compression);
53165316
break;
53175317
default:
53185318
ut_error;

0 commit comments

Comments
 (0)