summaryrefslogtreecommitdiffstats
path: root/parser-mecmd.c
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-06-17 08:11:56 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-06-17 08:11:56 +0000
commitc6e32e91b10e5759cd7353bef8430c0c2bc5cce7 (patch)
tree7ed7c4995aaf44ee4d6fc28d1b92e7b1de7305fb /parser-mecmd.c
parenta73a629c1b96e51bf2daa5254502e250b0327466 (diff)
downloadmpv-c6e32e91b10e5759cd7353bef8430c0c2bc5cce7.tar.bz2
mpv-c6e32e91b10e5759cd7353bef8430c0c2bc5cce7.tar.xz
when somebody specifies e.g. --loop, the message says that a -loop option
does not exist. So add an extra - to the message. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15743 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'parser-mecmd.c')
-rw-r--r--parser-mecmd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/parser-mecmd.c b/parser-mecmd.c
index 9fc2f3e3c8..b25d440420 100644
--- a/parser-mecmd.c
+++ b/parser-mecmd.c
@@ -87,7 +87,7 @@ m_config_parse_me_command_line(m_config_t *config, int argc, char **argv)
mp_opt = m_config_get_option(config,opt);
if(!mp_opt) {
tmp = M_OPT_UNKNOWN;
- mp_msg(MSGT_CFGPARSER, MSGL_ERR, "%s is not an MEncoder option\n",opt);
+ mp_msg(MSGT_CFGPARSER, MSGL_ERR, "-%s is not an MEncoder option\n",opt);
goto err_out;
}
if(!entry || (mp_opt->flags & M_OPT_GLOBAL)){