From 3cdec847a5b629dbfb2576da61a34dd62e0fb62d Mon Sep 17 00:00:00 2001 From: James Zern Date: Fri, 24 Jun 2016 19:25:52 -0700 Subject: [PATCH] vwebp: normalize the number of .'s in the help message Change-Id: Iadaa5a8f64cd8093eeeaf829ba609bef034d63b5 --- README | 4 ++-- examples/vwebp.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README b/README index e6517eef..2f059ac2 100644 --- a/README +++ b/README @@ -370,7 +370,7 @@ Usage: vwebp in_file [options] Decodes the WebP image file and visualize it using OpenGL Options are: - -version .... print version number and exit + -version ..... print version number and exit -noicc ....... don't use the icc profile if present -nofancy ..... don't use the fancy YUV420 upscaler -nofilter .... disable in-loop filtering @@ -378,7 +378,7 @@ Options are: -noalphadither disable alpha plane dithering -mt .......... use multi-threading -info ........ print info - -h ....... this help message + -h ........... this help message Keyboard shortcuts: 'c' ................ toggle use of color profile diff --git a/examples/vwebp.c b/examples/vwebp.c index f09aec43..4b3fcf62 100644 --- a/examples/vwebp.c +++ b/examples/vwebp.c @@ -387,7 +387,7 @@ static void Help(void) { printf("Usage: vwebp in_file [options]\n\n" "Decodes the WebP image file and visualize it using OpenGL\n" "Options are:\n" - " -version .... print version number and exit\n" + " -version ..... print version number and exit\n" " -noicc ....... don't use the icc profile if present\n" " -nofancy ..... don't use the fancy YUV420 upscaler\n" " -nofilter .... disable in-loop filtering\n" @@ -395,7 +395,7 @@ static void Help(void) { " -noalphadither disable alpha plane dithering\n" " -mt .......... use multi-threading\n" " -info ........ print info\n" - " -h ....... this help message\n" + " -h ........... this help message\n" "\n" "Keyboard shortcuts:\n" " 'c' ................ toggle use of color profile\n"