summaryrefslogtreecommitdiffstats
path: root/stream/stream_null.c
diff options
context:
space:
mode:
Diffstat (limited to 'stream/stream_null.c')
-rw-r--r--stream/stream_null.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/stream/stream_null.c b/stream/stream_null.c
index 8bae12ff9d..2e2b7886f7 100644
--- a/stream/stream_null.c
+++ b/stream/stream_null.c
@@ -25,7 +25,7 @@
#include "stream.h"
-static int open_s(stream_t *stream,int mode, void* opts)
+static int open_s(stream_t *stream,int mode)
{
return 1;
}
@@ -35,6 +35,4 @@ const stream_info_t stream_info_null = {
"null",
open_s,
{ "null", NULL },
- NULL,
- 0 // Urls are an option string
};