about summary refs log tree commit diff
path: root/lib
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2022-07-28 00:26:01 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2022-07-28 00:26:01 +0000
commite0daaf055be853d6a141beaa1757af3478366fa9 (patch)
treecf2b8c86c802e3ea6b077fbac421be1f105e4889 /lib
parentebc4d1a86965af0a0d4e98094f76ca541d324ae8 (diff)
downloadnetpbm-mirror-e0daaf055be853d6a141beaa1757af3478366fa9.tar.gz
netpbm-mirror-e0daaf055be853d6a141beaa1757af3478366fa9.tar.xz
netpbm-mirror-e0daaf055be853d6a141beaa1757af3478366fa9.zip
fix comment
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@4369 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'lib')
-rw-r--r--lib/util/shhopt.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/util/shhopt.h b/lib/util/shhopt.h
index 9ba072cb..27adc144 100644
--- a/lib/util/shhopt.h
+++ b/lib/util/shhopt.h
@@ -209,7 +209,7 @@ typedef struct {
 /* OPTENT3 is the same as OPTENTRY except that it also sets the "specified"
    element of the table entry (so it assumes OPTION_DEF is a table of optEntry
    instead of optStruct).  This is a pointer to a variable that the parser
-   will set to and indication of whether the option appears in the command
+   will set to an indication of whether the option appears in the command
    line.  1 for yes; 0 for no.
 
    HISTORICAL NOTE: Until 2019, this was the number of times the option was
@@ -224,8 +224,8 @@ typedef struct {
        const char * alpha_filename
        unsigned int alpha_spec;
        MALLOCARRAY_NOFAIL(option_def, 100);
-       OPTENT3('h', "verbose",  OPT_FLAG,   &verbose_flag    NULL);
-       OPTENT3(0,   "alphaout", OPT_STRING, &alpha_filename, &alpha_spec);
+       OPTENT3('h', "verbose",  OPT_FLAG,   &verbose_flag,   NULL,        0);
+       OPTENT3(0,   "alphaout", OPT_STRING, &alpha_filename, &alpha_spec, 0);
 */
 
 #define OPTENT3(shortvalue,longvalue,typevalue,outputvalue,specifiedvalue, \