Mercurial > mplayer.hg
changeset 26418:c55423b185fa
Fix the indentation after the noconfig patch.
Patch by Andrew Savchenko (Bircoph -at- list -dot- ru).
author | albeu |
---|---|
date | Mon, 14 Apr 2008 11:24:24 +0000 |
parents | 04effd44c46a |
children | 574f4343a0c1 |
files | mencoder.c |
diffstat | 1 files changed, 7 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- 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); + } } }