diff options
author | Jan Lindström <jan.lindstrom@skysql.com> | 2014-07-25 18:45:14 +0300 |
---|---|---|
committer | Jan Lindström <jan.lindstrom@skysql.com> | 2014-07-25 18:45:14 +0300 |
commit | 1f69ff44138ca460b6d6b0172ab664de583132b6 (patch) | |
tree | 20996cce5ea5884e4e005cabb100267108d2c8ca /storage | |
parent | 56c4b016ad5ee7ec994cde8a27934a89259fe670 (diff) | |
download | mariadb-git-1f69ff44138ca460b6d6b0172ab664de583132b6.tar.gz |
Fix compiler error on Windows.
Diffstat (limited to 'storage')
-rw-r--r-- | storage/xtradb/os/os0file.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/storage/xtradb/os/os0file.cc b/storage/xtradb/os/os0file.cc index 8366457b968..10b30621de5 100644 --- a/storage/xtradb/os/os0file.cc +++ b/storage/xtradb/os/os0file.cc @@ -5303,16 +5303,16 @@ os_aio_windows_handle( case OS_FILE_WRITE: if (slot->message1 && slot->page_compression && slot->page_buf) { ret_val = os_file_write(slot->name, slot->file, slot->page_buf, - slot->offset, slot->len); + slot->offset, slot->len); } else { ret_val = os_file_write(slot->name, slot->file, slot->buf, - slot->offset, slot->len); + slot->offset, slot->len); } break; case OS_FILE_READ: ret_val = os_file_read(slot->file, slot->buf, - slot->offset, slot->len); + slot->offset, slot->len, slot->page_compression); break; default: ut_error; |