diff options
Diffstat (limited to 'src/xz/file_io.h')
-rw-r--r-- | src/xz/file_io.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xz/file_io.h b/src/xz/file_io.h index 84d5b44d..ff6fb80a 100644 --- a/src/xz/file_io.h +++ b/src/xz/file_io.h @@ -139,7 +139,7 @@ extern void io_fix_src_pos(file_pair *pair, size_t rewind_size); /// /// \return On success, false is returned. On error, error message /// is printed and true is returned. -extern bool io_seek_src(file_pair *pair, off_t pos); +extern bool io_seek_src(file_pair *pair, uint64_t pos); /// \brief Read from source file from given offset to a buffer @@ -155,7 +155,7 @@ extern bool io_seek_src(file_pair *pair, off_t pos); /// /// \return On success, false is returned. On error, error message /// is printed and true is returned. -extern bool io_pread(file_pair *pair, io_buf *buf, size_t size, off_t pos); +extern bool io_pread(file_pair *pair, io_buf *buf, size_t size, uint64_t pos); /// \brief Writes a buffer to the destination file |