summaryrefslogtreecommitdiffstats
path: root/m_option.c
diff options
context:
space:
mode:
authoralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-06-25 17:01:25 +0000
committeralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-06-25 17:01:25 +0000
commit5962b1f14a238f9b7e99c8417cd4ede544b8cbc1 (patch)
treebbf40ac15890397570892e26acb489f1a872c006 /m_option.c
parent96d7f792be8abbbbb54d9e543290ba64e962cbb8 (diff)
downloadmpv-5962b1f14a238f9b7e99c8417cd4ede544b8cbc1.tar.bz2
mpv-5962b1f14a238f9b7e99c8417cd4ede544b8cbc1.tar.xz
degccify
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12654 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'm_option.c')
-rw-r--r--m_option.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/m_option.c b/m_option.c
index 53d757e933..43ae7e83cc 100644
--- a/m_option.c
+++ b/m_option.c
@@ -1389,15 +1389,15 @@ static int parse_obj_settings_list(m_option_t* opt,char *name,
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;
}