aboutsummaryrefslogtreecommitdiffstats
path: root/src/input_file.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/input_file.c')
-rw-r--r--src/input_file.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/input_file.c b/src/input_file.c
index 1b6d82f9d..cf5c080f5 100644
--- a/src/input_file.c
+++ b/src/input_file.c
@@ -116,16 +116,9 @@ input_file_eof(struct input_stream *is)
return is->offset >= is->size;
}
-static int
-input_file_buffer(G_GNUC_UNUSED struct input_stream *is)
-{
- return 0;
-}
-
const struct input_plugin input_plugin_file = {
.open = input_file_open,
.close = input_file_close,
- .buffer = input_file_buffer,
.read = input_file_read,
.eof = input_file_eof,
.seek = input_file_seek,