diff options
Diffstat (limited to '')
-rw-r--r-- | src/InputStream.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/InputStream.cxx b/src/InputStream.cxx index 8a9f6c66d..23e535d15 100644 --- a/src/InputStream.cxx +++ b/src/InputStream.cxx @@ -95,7 +95,7 @@ input_stream::CheapSeeking() const } bool -input_stream::Seek(goffset _offset, int whence, Error &error) +input_stream::Seek(offset_type _offset, int whence, Error &error) { if (plugin.seek == nullptr) return false; @@ -104,7 +104,7 @@ input_stream::Seek(goffset _offset, int whence, Error &error) } bool -input_stream::LockSeek(goffset _offset, int whence, Error &error) +input_stream::LockSeek(offset_type _offset, int whence, Error &error) { if (plugin.seek == nullptr) return false; |