# HG changeset patch # User albeu # Date 1208172264 0 # Node ID c55423b185faed2f4918c4f87b444299d1e6e93e # Parent 04effd44c46ac0879c4e8343bf27f2cb90dc7c8a Fix the indentation after the noconfig patch. Patch by Andrew Savchenko (Bircoph -at- list -dot- ru). diff -r 04effd44c46a -r c55423b185fa mencoder.c --- a/mencoder.c Mon Apr 14 11:23:18 2008 +0000 +++ b/mencoder.c Mon Apr 14 11:24:24 2008 +0000 @@ -316,13 +316,13 @@ 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); + } } }