# HG changeset patch # User voroshil # Date 1188130322 0 # Node ID 2bf8d87447d7f35ec59813340c7a3a2705d4ee5f # Parent 4ad5ef881aa107e3969bd865c4d6b3ad276f688e Suboptions structure should be passed as array not as address of array. patch from Bernd Ernesti mplayer-dev-eng at lists dot veego dot de diff -r 4ad5ef881aa1 -r 2bf8d87447d7 cfg-mplayer.h --- a/cfg-mplayer.h Sun Aug 26 12:07:37 2007 +0000 +++ b/cfg-mplayer.h Sun Aug 26 12:12:02 2007 +0000 @@ -396,7 +396,7 @@ {"nomouse-movements", &enable_mouse_movements, CONF_TYPE_FLAG, CONF_GLOBAL, 1, 0, NULL}, {"doubleclick-time", &doubleclick_time, CONF_TYPE_INT, CONF_RANGE, 0, 1000, NULL}, #ifdef USE_TV - {"tvscan", &tvscan_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL}, + {"tvscan", tvscan_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL}, #else {"tvscan", "MPlayer was compiled without TV interface support.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL}, #endif