summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mencoder.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/mencoder.c b/mencoder.c
index ae35f3d5e2..6530d1f449 100644
--- a/mencoder.c
+++ b/mencoder.c
@@ -316,13 +316,13 @@ static void parse_cfgfiles( m_config_t* conf )
mencoder_exit(1,MSGTR_ConfigFileError);
if (!disable_user_conf) {
- if ((conffile = get_path("mencoder.conf")) == NULL) {
- mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_GetpathProblem);
- } else {
- if (m_config_parse_config_file(conf, conffile) < 0)
- mencoder_exit(1,MSGTR_ConfigFileError);
- free(conffile);
- }
+ if ((conffile = get_path("mencoder.conf")) == NULL) {
+ mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_GetpathProblem);
+ } else {
+ if (m_config_parse_config_file(conf, conffile) < 0)
+ mencoder_exit(1,MSGTR_ConfigFileError);
+ free(conffile);
+ }
}
}