summaryrefslogtreecommitdiffstats
path: root/cfg-mplayer.h
diff options
context:
space:
mode:
authorUoti Urpala <uau@glyph.nonexistent.invalid>2010-04-25 23:00:19 +0300
committerUoti Urpala <uau@glyph.nonexistent.invalid>2010-04-25 23:00:19 +0300
commit082287f3a3ae77c90266f5acae037e052080462c (patch)
tree6a17a2e470df43bcd6a44c3496bb35c4cd624586 /cfg-mplayer.h
parent66a983985d0c41c5c2eaef7b47deeebde78e5fad (diff)
downloadmpv-082287f3a3ae77c90266f5acae037e052080462c.tar.bz2
mpv-082287f3a3ae77c90266f5acae037e052080462c.tar.xz
cfg-mplayer.h: add casts to silence warnings
Diffstat (limited to 'cfg-mplayer.h')
-rw-r--r--cfg-mplayer.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/cfg-mplayer.h b/cfg-mplayer.h
index 962d8eb3be..a622c5c0b6 100644
--- a/cfg-mplayer.h
+++ b/cfg-mplayer.h
@@ -364,9 +364,9 @@ const m_option_t mplayer_opts[]={
{"list-properties", &list_properties, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL},
{"identify", &mp_msg_levels[MSGT_IDENTIFY], CONF_TYPE_FLAG, CONF_GLOBAL, 0, MSGL_V, NULL},
- {"-help", help_text, CONF_TYPE_PRINT, CONF_NOCFG|CONF_GLOBAL, 0, 0, NULL},
- {"help", help_text, CONF_TYPE_PRINT, CONF_NOCFG|CONF_GLOBAL, 0, 0, NULL},
- {"h", help_text, CONF_TYPE_PRINT, CONF_NOCFG|CONF_GLOBAL, 0, 0, NULL},
+ {"-help", (void *) help_text, CONF_TYPE_PRINT, CONF_NOCFG|CONF_GLOBAL, 0, 0, NULL},
+ {"help", (void *) help_text, CONF_TYPE_PRINT, CONF_NOCFG|CONF_GLOBAL, 0, 0, NULL},
+ {"h", (void *) help_text, CONF_TYPE_PRINT, CONF_NOCFG|CONF_GLOBAL, 0, 0, NULL},
{"vd", (void *) vd_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},
{NULL, NULL, 0, 0, 0, 0, NULL}