From 6b2b91ff01050ca79256026e5f92ba6da93fc5cf Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 18 May 2010 21:20:18 +0200 Subject: input/mms: removed empty method buffer() input_stream_buffer() has a check for "buffer==NULL", so we don't need an explicit empty implementation. --- src/input/mms_input_plugin.c | 8 -------- 1 file changed, 8 deletions(-) (limited to 'src/input') diff --git a/src/input/mms_input_plugin.c b/src/input/mms_input_plugin.c index 8d4f7591d..2fe9b6bb2 100644 --- a/src/input/mms_input_plugin.c +++ b/src/input/mms_input_plugin.c @@ -115,13 +115,6 @@ input_mms_eof(struct input_stream *is) return m->eof; } -static int -input_mms_buffer(G_GNUC_UNUSED struct input_stream *is, - G_GNUC_UNUSED GError **error_r) -{ - return 0; -} - static bool input_mms_seek(G_GNUC_UNUSED struct input_stream *is, G_GNUC_UNUSED goffset offset, G_GNUC_UNUSED int whence, @@ -134,7 +127,6 @@ const struct input_plugin input_plugin_mms = { .name = "mms", .open = input_mms_open, .close = input_mms_close, - .buffer = input_mms_buffer, .read = input_mms_read, .eof = input_mms_eof, .seek = input_mms_seek, -- cgit v1.2.3