diff options
author | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2008-01-13 16:26:28 +0000 |
---|---|---|
committer | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2008-01-13 16:26:28 +0000 |
commit | 1ade4e20baab0600ec584bea0cc89a46e0f1ee02 (patch) | |
tree | db5c76ef15e41514ed6bb363af3234b529d8cca0 /gui/win32 | |
parent | acd409b4bfbbdc7d34c08a42b71c78be5e8d8606 (diff) |
gui_opts should be const for win32 gui as well (why, oh why, was all
this code duplicated??).
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25741 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'gui/win32')
-rw-r--r-- | gui/win32/wincfg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/win32/wincfg.c b/gui/win32/wincfg.c index 894a06e71d..ec4ad08657 100644 --- a/gui/win32/wincfg.c +++ b/gui/win32/wincfg.c @@ -58,7 +58,7 @@ extern char *proc_priority; extern int m_config_parse_config_file(m_config_t *config, char *conffile); static m_config_t *gui_conf; -static m_option_t gui_opts[] = +static const m_option_t gui_opts[] = { { "priority", &proc_priority, CONF_TYPE_STRING, 0, 0, 0, NULL}, { "vo_driver", &video_driver_list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL }, |