diff parser-mecmd.c @ 15742:55cbf0c204bc

when somebody specifies e.g. --loop, the message says that a -loop option does not exist. So add an extra - to the message.
author reimar
date Fri, 17 Jun 2005 08:11:56 +0000
parents 4fdfe0860cc5
children feb16d0117c8
line wrap: on
line diff
--- a/parser-mecmd.c	Fri Jun 17 02:22:34 2005 +0000
+++ b/parser-mecmd.c	Fri Jun 17 08:11:56 2005 +0000
@@ -87,7 +87,7 @@
 	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)){