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 68225a0c27..c8d64ff113 100644
--- a/parser-mecmd.c
+++ b/parser-mecmd.c
@@ -72,7 +72,7 @@ m_config_parse_me_command_line(m_config_t *config, int argc, char **argv)
no_more_opts = 1;
if (i+1 >= argc)
{
- mp_msg(MSGT_CFGPARSER, MSGL_ERR, "You added '--' but no filenames presented!\n");
+ mp_msg(MSGT_CFGPARSER, MSGL_ERR, "'--' indicates no more options, but no filename was given on the command line.\n");
goto err_out;
}
continue;
diff --git a/parser-mpcmd.c b/parser-mpcmd.c
index a9aebe5dfb..2e6977898e 100644
--- a/parser-mpcmd.c
+++ b/parser-mpcmd.c
@@ -95,7 +95,7 @@ m_config_parse_mp_command_line(m_config_t *config, int argc, char **argv)
no_more_opts = 1;
if (i+1 >= argc)
{
- mp_msg(MSGT_CFGPARSER, MSGL_ERR, "You added '--' but no filenames presented!\n");
+ mp_msg(MSGT_CFGPARSER, MSGL_ERR, "'--' indicates no more options, but no filename was given on the command line.\n");
goto err_out;
}
continue;