changeset 12653:b40f21d9a43c

degccify
author alex
date Fri, 25 Jun 2004 17:01:25 +0000
parents 01d2d0e7340f
children 433c0d389f6f
files m_option.c
diffstat 1 files changed, 5 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/m_option.c	Fri Jun 25 17:01:01 2004 +0000
+++ b/m_option.c	Fri Jun 25 17:01:25 2004 +0000
@@ -1389,15 +1389,15 @@
       prefix[len-1] = '\0';
       mp_msg(MSGT_VFILTER,MSGL_ERR, "Option %s: unknown postfix %s\n"
 	     "Supported postfixes are:\n"
-	     "  %3$s-add\n"
+	     "  %s-add\n"
 	     " Append the given list to the current list\n\n"
-	     "  %3$s-pre\n"
+	     "  %s-pre\n"
 	     " Prepend the given list to the current list\n\n"
-	     "  %3$s-del x,y,...\n"
+	     "  %s-del x,y,...\n"
 	     " Remove the given elements. Take the list element index (starting from 0).\n"
 	     " Negative index can be used (i.e. -1 is the last element)\n\n"
-	     "  %3$s-clr\n"
-	     " Clear the current list.\n",name,n,prefix);
+	     "  %s-clr\n"
+	     " Clear the current list.\n",name,n,prefix,prefix,prefix,prefix);
       
       return M_OPT_UNKNOWN;
     }