From 916e7c0ca36ed09affee87c4ad2d234aa8f504cf Mon Sep 17 00:00:00 2001 From: Dmitry Baryshev Date: Tue, 17 Oct 2023 13:19:23 +0300 Subject: [PATCH] EXAMPLES: Added 'frame' to the 'probe' help text --- examples/c/sail/sail.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/c/sail/sail.c b/examples/c/sail/sail.c index f0cc2036..6a830e61 100644 --- a/examples/c/sail/sail.c +++ b/examples/c/sail/sail.c @@ -332,7 +332,7 @@ static void help(const char *app) { fprintf(stderr, "\n"); fprintf(stderr, " convert [-c | --compression ] - Convert one image format to another.\n"); fprintf(stderr, "\n"); - fprintf(stderr, " probe - Retrieve information of the very first image found in the file.\n"); + fprintf(stderr, " probe - Retrieve information of the very first image frame found in the file.\n"); fprintf(stderr, " In most cases probing doesn't decode the image data.\n"); fprintf(stderr, " decode - Decode the whole file and print information of all its frames.\n"); }