Fix incorrect usage statement in bin/dither.c

This commit is contained in:
XANTRONIX Development 2022-06-23 11:18:51 -04:00
parent 31a712224d
commit 9b50285b2e

View file

@ -30,7 +30,7 @@ static void usage(int argc, char **argv, const char *message, ...) {
fprintf(stderr, "\n"); 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); exit(1);
} }