summaryrefslogtreecommitdiffstats
path: root/stream/stream_vcd.c
diff options
context:
space:
mode:
Diffstat (limited to 'stream/stream_vcd.c')
-rw-r--r--stream/stream_vcd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/stream/stream_vcd.c b/stream/stream_vcd.c
index 6ec8453536..dacf2763f8 100644
--- a/stream/stream_vcd.c
+++ b/stream/stream_vcd.c
@@ -177,7 +177,7 @@ static int open_s(stream_t *stream,int mode)
}
const stream_info_t stream_info_vcd = {
- "vcd",
- open_s,
- { "vcd", NULL },
+ .name = "vcd",
+ .open = open_s,
+ .protocols = (const char*[]){ "vcd", NULL },
};