summaryrefslogtreecommitdiffstats
path: root/core/options.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-08-05 18:07:12 +0200
committerwm4 <wm4@nowhere>2013-08-05 19:18:22 +0200
commit3be39ed76c743647873201942012c43acdcd89a8 (patch)
tree8cb3812cd8db0fd871d59f8f1d6755c16341f21e /core/options.c
parentee2e3b3374c4756dc881962bea4e4615805a8122 (diff)
downloadmpv-3be39ed76c743647873201942012c43acdcd89a8.tar.bz2
mpv-3be39ed76c743647873201942012c43acdcd89a8.tar.xz
stream_radio: fix some things
Using the radio set/step channel commands would have crashed (that was broken for about a year, nobody ever noticed). The "capture" part of a radio:// URI was incorrectly passed (this was broken quite recently). Still couldn't test it fully. I have no radio device. I suspect nobody uses this feature or will ever use it again.
Diffstat (limited to 'core/options.c')
-rw-r--r--core/options.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/options.c b/core/options.c
index 0409288b9e..dcab2dc564 100644
--- a/core/options.c
+++ b/core/options.c
@@ -426,7 +426,7 @@ const m_option_t mp_opts[] = {
{"mf", (void *) mfopts_conf, CONF_TYPE_SUBCONFIG, 0,0,0, NULL},
#ifdef CONFIG_RADIO
- {"radio", radioopts_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},
+ {"radio", (void *) radioopts_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},
#endif /* CONFIG_RADIO */
#ifdef CONFIG_TV
{"tv", (void *) tvopts_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},