[MPlayer-cvslog] r34282 - trunk/gui/win32/wincfg.c
ib
subversion at mplayerhq.hu
Mon Oct 31 13:25:00 CET 2011
Author: ib
Date: Mon Oct 31 13:25:00 2011
New Revision: 34282
Log:
Add missing parameter to Win32 GUI's call to m_config_parse_config_file().
This parameter is new since r34260 and has been forgotten in r34281.
Modified:
trunk/gui/win32/wincfg.c
Modified: trunk/gui/win32/wincfg.c
==============================================================================
--- trunk/gui/win32/wincfg.c Mon Oct 31 12:51:03 2011 (r34281)
+++ trunk/gui/win32/wincfg.c Mon Oct 31 13:25:00 2011 (r34282)
@@ -105,7 +105,7 @@ int cfg_read(void)
mp_msg(MSGT_GPLAYER, MSGL_V, "[GUI] [cfg] reading config file: %s\n", cfg);
gui_conf = m_config_new();
m_config_register_options(gui_conf, gui_opts);
- if (m_config_parse_config_file(gui_conf, cfg) < 0)
+ if (m_config_parse_config_file(gui_conf, cfg, 1) < 0)
mp_msg(MSGT_GPLAYER, MSGL_FATAL, MSGTR_ConfigFileError);
free(cfg);
return 0;
More information about the MPlayer-cvslog
mailing list