From 9b50285b2eba5608aa5e8dcdd79449ec9acb026f Mon Sep 17 00:00:00 2001 From: XANTRONIX Development Date: Thu, 23 Jun 2022 11:18:51 -0400 Subject: [PATCH] Fix incorrect usage statement in bin/dither.c --- bin/dither.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/dither.c b/bin/dither.c index e03ea79..08a0f11 100644 --- a/bin/dither.c +++ b/bin/dither.c @@ -30,7 +30,7 @@ static void usage(int argc, char **argv, const char *message, ...) { fprintf(stderr, "\n"); } - fprintf(stderr, "usage: %1$s convert input.png output.png\n", argv[0]); + fprintf(stderr, "usage: %1$s dither input.png output.png\n", argv[0]); exit(1); }