summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--parser-mecmd.c2
-rw-r--r--parser-mpcmd.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/parser-mecmd.c b/parser-mecmd.c
index 65eabdd85a..99251ac10e 100644
--- a/parser-mecmd.c
+++ b/parser-mecmd.c
@@ -100,7 +100,7 @@ m_config_parse_me_command_line(m_config_t *config, int argc, char **argv)
else
if(tmp < 0){
// mp_msg(MSGT_CFGPARSER, MSGL_ERR, "m_config_set_option() failed (%d)\n",tmp);
- mp_msg(MSGT_CFGPARSER, MSGL_ERR, "Error parsing option on the command line: -%s\n",opt);
+ mp_msg(MSGT_CFGPARSER, MSGL_FATAL, "Error parsing option on the command line: -%s\n",opt);
goto err_out;
}
} else {
diff --git a/parser-mpcmd.c b/parser-mpcmd.c
index 60c30b5117..036702152d 100644
--- a/parser-mpcmd.c
+++ b/parser-mpcmd.c
@@ -199,7 +199,7 @@ m_config_parse_mp_command_line(m_config_t *config, int argc, char **argv)
tmp = M_OPT_EXIT - tmp;
} else
if (tmp < 0) {
- mp_msg(MSGT_CFGPARSER, MSGL_ERR, "Error parsing option on the command line: -%s\n",opt);
+ mp_msg(MSGT_CFGPARSER, MSGL_FATAL, "Error parsing option on the command line: -%s\n",opt);
goto err_out;
}
i += tmp;