mirror of
https://github.com/mpv-player/mpv
synced 2025-01-01 04:36:24 +01:00
cfg-config: avoid warning with -Wincompatible-pointer-types
This was throwing off a warning with clang. Add a cast to (void *) like many other options do.
This commit is contained in:
parent
9125ba0a4f
commit
264b5124e7
@ -466,7 +466,7 @@ const m_option_t common_opts[] = {
|
||||
// postprocessing:
|
||||
{"pp", &divx_quality, CONF_TYPE_INT, 0, 0, 0, NULL},
|
||||
#ifdef CONFIG_LIBPOSTPROC
|
||||
{"pphelp", &pp_help, CONF_TYPE_PRINT, CONF_GLOBAL | CONF_NOCFG, 0, 0, NULL},
|
||||
{"pphelp", (void *) &pp_help, CONF_TYPE_PRINT, CONF_GLOBAL | CONF_NOCFG, 0, 0, NULL},
|
||||
#endif
|
||||
|
||||
// scaling:
|
||||
|
Loading…
Reference in New Issue
Block a user