From 1d4a904d8fb634bd5a04f7fbdd17d3739f3d8866 Mon Sep 17 00:00:00 2001 From: Lasse Collin Date: Mon, 24 Jun 2019 00:40:45 +0300 Subject: xz: Change io_seek_src and io_pread arguments from off_t to uint64_t. This helps fixing warnings from -Wsign-conversion and makes the code look better too. --- src/xz/file_io.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/xz/file_io.h') 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 -- cgit v1.2.3