summaryrefslogtreecommitdiffstats
path: root/stream/stream_mf.c
diff options
context:
space:
mode:
Diffstat (limited to 'stream/stream_mf.c')
-rw-r--r--stream/stream_mf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/stream/stream_mf.c b/stream/stream_mf.c
index 720a73f836..9b80a73d58 100644
--- a/stream/stream_mf.c
+++ b/stream/stream_mf.c
@@ -38,7 +38,7 @@ mf_stream_open (stream_t *stream, int mode)
}
const stream_info_t stream_info_mf = {
- "mf",
- mf_stream_open,
- { "mf", NULL },
+ .name = "mf",
+ .open = mf_stream_open,
+ .protocols = (const char*[]){ "mf", NULL },
};