diff options
Diffstat (limited to '')
-rw-r--r-- | src/input_stream.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input_stream.c b/src/input_stream.c index 30fb4b27e..e4f5626c6 100644 --- a/src/input_stream.c +++ b/src/input_stream.c @@ -76,7 +76,7 @@ input_stream_open(struct input_stream *is, char *url) } bool -input_stream_seek(struct input_stream *is, long offset, int whence) +input_stream_seek(struct input_stream *is, off_t offset, int whence) { return is->plugin->seek(is, offset, whence); } |