Skip to content

Commit

Permalink
Merge 4cf23cf into 249a2c5
Browse files Browse the repository at this point in the history
  • Loading branch information
AliceLanniste committed Jun 9, 2019
2 parents 249a2c5 + 4cf23cf commit c1c4454
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/storage/file.rs
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ impl File for SysFile {
}
#[cfg(windows)]
fn read_at(&self, buf: &mut [u8], offset: u64) -> Result<usize> {
let r = std::os::windows::prelude::FileExt::seek_read(buf, offset);
let r = std::os::windows::prelude::FileExt::seek_read(self, buf, offset);
w_io_result!(r)
}
}
Expand Down

0 comments on commit c1c4454

Please sign in to comment.