two small corrections in help output

This commit is contained in:
Erik Auerswald
2021-04-27 19:18:02 +02:00
parent 113d665135
commit ab6dab59ad
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -23,7 +23,7 @@
#define SSOCR2_DEFINES_H
/* version number */
#define VERSION "2.21.0"
#define VERSION "2.21.0+"
/* states */
#define FIND_DARK 0
+2 -2
View File
@@ -169,7 +169,7 @@ void usage(char *name, FILE *f)
fprintf(f, " with a window of width W and height H\n");
fprintf(f, " rgb_threshold make image monochrome by setting every pixel\n");
fprintf(f, " with any values of red, green or blue below\n");
fprintf(f, " below the threshold to black\n");
fprintf(f, " the threshold to black\n");
fprintf(f, " r_threshold make image monochrome using only red channel\n");
fprintf(f, " g_threshold make image monochrome using only green channel\n");
fprintf(f, " b_threshold make image monochrome using only blue channel\n");
@@ -213,6 +213,6 @@ void usage(char *name, FILE *f)
fprintf(f, " 1 if a different number of digits have been found\n");
fprintf(f, " 2 if one of the digits could not be recognized\n");
fprintf(f, " 3 if successful image processing only\n");
fprintf(f, " 42 if -h, -V, or -l help\n");
fprintf(f, " 42 if -h, -V, -l help, or -c help\n");
fprintf(f, " 99 otherwise\n");
}