diff options
Diffstat (limited to '')
-rw-r--r-- | src/input_file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input_file.c b/src/input_file.c index 8ffe11395..dfb9a815d 100644 --- a/src/input_file.c +++ b/src/input_file.c @@ -52,7 +52,7 @@ input_file_open(struct input_stream *is, const char *filename) } static bool -input_file_seek(struct input_stream *is, long offset, int whence) +input_file_seek(struct input_stream *is, off_t offset, int whence) { if (fseek((FILE *) is->data, offset, whence) == 0) { is->offset = ftell((FILE *) is->data); |