summaryrefslogtreecommitdiff
path: root/vhook
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2007-11-20 13:42:43 +0000
committerDiego Biurrun <diego@biurrun.de>2007-11-20 13:42:43 +0000
commit79815f622d90499f882ad968a1351134535cbbab (patch)
tree00c049cef0749bf3d0ebf63faaf01a42e06e7ade /vhook
parente5af4a113b43e6bce9191d1d85790ad65eeddf3d (diff)
Fix wrong error message.
patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 11070 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'vhook')
-rw-r--r--vhook/drawtext.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vhook/drawtext.c b/vhook/drawtext.c
index 0818476202..856fd0ce78 100644
--- a/vhook/drawtext.c
+++ b/vhook/drawtext.c
@@ -203,7 +203,7 @@ int Configure(void **ctxp, int argc, char *argv[])
case 'C':
if (ParseColor(optarg, ci->bgcolor) == -1)
{
- av_log(NULL, AV_LOG_ERROR, "Invalid foreground color: '%s'. You must specify the color in the internet way(packaged hex): #RRGGBB, ie: -c #ffffff (for white foreground)\n", optarg);
+ av_log(NULL, AV_LOG_ERROR, "Invalid background color: '%s'. You must specify the color in the internet way(packaged hex): #RRGGBB, ie: -C #ffffff (for white background)\n", optarg);
return -1;
}
break;