summaryrefslogtreecommitdiffstats
path: root/m_config.c
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-19 17:41:31 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-19 17:41:31 +0000
commitb05b201a49665961dda359899f2e429e882d2122 (patch)
tree77cb255fcfbd30d06a3415dd8e5383bb5776852d /m_config.c
parent60e7e1932e00901650535fba8412346cca3a7a4b (diff)
downloadmpv-b05b201a49665961dda359899f2e429e882d2122.tar.bz2
mpv-b05b201a49665961dda359899f2e429e882d2122.tar.xz
Fix obvious typo, although the exact effect is still unclear to me, see also bug #593.
Patch by jose nazario [jose <at> monkey org]. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21070 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'm_config.c')
-rw-r--r--m_config.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/m_config.c b/m_config.c
index f8dcf46b44..d1cb0e0485 100644
--- a/m_config.c
+++ b/m_config.c
@@ -124,7 +124,7 @@ m_config_push(m_config_t* config) {
continue;
if(co->opt->flags & (M_OPT_GLOBAL|M_OPT_NOSAVE))
continue;
- if((co->opt->flags & M_OPT_OLD) && !(co->flags && M_CFG_OPT_SET))
+ if((co->opt->flags & M_OPT_OLD) && !(co->flags & M_CFG_OPT_SET))
continue;
if(co->flags & M_CFG_OPT_ALIAS)
continue;