summaryrefslogtreecommitdiffstats
path: root/mencoder.c
diff options
context:
space:
mode:
authoralbeu <albeu@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-04-14 11:24:24 +0000
committeralbeu <albeu@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-04-14 11:24:24 +0000
commitdb3ca5062a18b6f61de6ef9fe3de50763e8dacfd (patch)
treec41b611b2edd7bd3a68cf68a90332e558420949b /mencoder.c
parent84bc10acb903574c27ce16af1af3ea0083111e76 (diff)
downloadmpv-db3ca5062a18b6f61de6ef9fe3de50763e8dacfd.tar.bz2
mpv-db3ca5062a18b6f61de6ef9fe3de50763e8dacfd.tar.xz
Fix the indentation after the noconfig patch.
Patch by Andrew Savchenko (Bircoph -at- list -dot- ru). git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26450 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mencoder.c')
-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);
+ }
}
}