# HG changeset patch # User alex # Date 1088182885 0 # Node ID b40f21d9a43c9eccc48bc7da133bb111eb30b5f3 # Parent 01d2d0e7340f6e708b06ee27cc6dd0eb4ad67dd7 degccify diff -r 01d2d0e7340f -r b40f21d9a43c m_option.c --- 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; }