From: kramm Date: Fri, 8 Feb 2008 10:42:31 +0000 (+0000) Subject: printf %% fix by Markus Fleck-Graffe X-Git-Tag: buttons-working~427 X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=commitdiff_plain;h=d18ccf3a425ed1a44c54b7d4f5045b6defa08445 printf %% fix by Markus Fleck-Graffe --- diff --git a/src/png2swf.c b/src/png2swf.c index 5da1945..0878543 100644 --- a/src/png2swf.c +++ b/src/png2swf.c @@ -1064,7 +1064,7 @@ void args_callback_usage(char *name) printf("-q , --quiet Omit normal log messages, only log errors\n"); printf("-C , --cgi For use as CGI- prepend http header, write to stdout\n"); printf("-V , --version Print version information and exit\n"); - printf("-s , --scale Scale image to % size.\n"); + printf("-s , --scale Scale image to %% size.\n"); printf("\n"); } diff --git a/src/swfcombine.c b/src/swfcombine.c index 16589b1..9ada1a6 100644 --- a/src/swfcombine.c +++ b/src/swfcombine.c @@ -285,7 +285,7 @@ void args_callback_usage(char *name) printf("-f , --frame The following identifier is a frame or framelabel, not an id or objectname\n"); printf("-x , --movex x Adjust position of slave by pixels\n"); printf("-y , --movey y Adjust position of slave by pixels\n"); - printf("-s , --scale Adjust size of slave by percent (e.g. 100% = original size)\n"); + printf("-s , --scale Adjust size of slave by percent (e.g. 100%% = original size)\n"); printf("-r , --rate Set movie framerate to (frames/sec)\n"); printf("-X , --width Force movie bbox width to (default: use master width (not with -t))\n"); printf("-Y , --height Force movie bbox height to (default: use master height (not with -t))\n");