summaryrefslogtreecommitdiffstats
path: root/parser-cfg.c
diff options
context:
space:
mode:
Diffstat (limited to 'parser-cfg.c')
-rw-r--r--parser-cfg.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/parser-cfg.c b/parser-cfg.c
index c792ced3ac..02b6337d1a 100644
--- a/parser-cfg.c
+++ b/parser-cfg.c
@@ -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) {