From 05de2e998c7df2757ae63ce6a053e27eca3d13ca Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Thu, 17 Oct 2013 09:43:55 +0200 Subject: InputStream: use int64_t instead of goffset Decouple some more from GLib. --- src/InputStream.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/InputStream.cxx') 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; -- cgit v1.2.3