diff options
author | Max Kellermann <max@duempel.org> | 2013-10-17 09:43:55 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-10-17 10:45:10 +0200 |
commit | 05de2e998c7df2757ae63ce6a053e27eca3d13ca (patch) | |
tree | 2c85c43cb69dc2dc7086bfddc66090928cd0d93f /src/InputStream.cxx | |
parent | 24780d99e61af44141e8f0d0d0776a1c994e6770 (diff) | |
download | mpd-05de2e998c7df2757ae63ce6a053e27eca3d13ca.tar.gz mpd-05de2e998c7df2757ae63ce6a053e27eca3d13ca.tar.xz mpd-05de2e998c7df2757ae63ce6a053e27eca3d13ca.zip |
InputStream: use int64_t instead of goffset
Decouple some more from GLib.
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; |