Fix stray newline that should only be printed in verbose mode.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19468 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2006-08-20 21:41:44 +00:00
parent 18f18eb2dc
commit af8b8d2fa4
1 changed files with 3 additions and 2 deletions

View File

@ -73,7 +73,9 @@ int m_config_parse_config_file(m_config_t* config, char *conffile)
mp_msg(MSGT_CFGPARSER,MSGL_FATAL,"\ncan't get memory for 'line': %s", strerror(errno));
ret = -1;
goto out;
}
} else
mp_msg(MSGT_CFGPARSER,MSGL_V,"\n");
if ((fp = fopen(conffile, "r")) == NULL) {
mp_msg(MSGT_CFGPARSER,MSGL_V,": %s\n", strerror(errno));
@ -81,7 +83,6 @@ int m_config_parse_config_file(m_config_t* config, char *conffile)
ret = 0;
goto out;
}
mp_msg(MSGT_CFGPARSER,MSGL_INFO,"\n");
while (fgets(line, MAX_LINE_LEN, fp)) {
if (errors >= 16) {