From ac6d51f0050324e28075d272dddd61aba17b8ffd Mon Sep 17 00:00:00 2001 From: voroshil Date: Sun, 26 Aug 2007 12:12:02 +0000 Subject: [PATCH] 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 git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24208 b3059339-0415-0410-9bf9-f77b7e298cf2 --- cfg-mplayer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cfg-mplayer.h b/cfg-mplayer.h index 294e1ca743..de269f4d9d 100644 --- a/cfg-mplayer.h +++ b/cfg-mplayer.h @@ -396,7 +396,7 @@ m_option_t mplayer_opts[]={ {"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