From: mdw Date: Thu, 19 Aug 1999 18:37:43 +0000 (+0000) Subject: Fix stupid error. X-Git-Tag: 1.2.5~1 X-Git-Url: https://git.distorted.org.uk/~mdw/cfd/commitdiff_plain/98ea3924ffaa6d7cc759da49322dde5f54335870 Fix stupid error. --- diff --git a/mdwopt.h b/mdwopt.h index 02e84ab..1205b7b 100644 --- a/mdwopt.h +++ b/mdwopt.h @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: mdwopt.h,v 1.7 1999/08/19 18:35:10 mdw Exp $ + * $Id: mdwopt.h,v 1.8 1999/08/19 18:37:43 mdw Exp $ * * Options parsing, similar to GNU @getopt_long@ * @@ -30,6 +30,9 @@ /*----- Revision history --------------------------------------------------* * * $Log: mdwopt.h,v $ + * Revision 1.8 1999/08/19 18:37:43 mdw + * Fix stupid error. + * * Revision 1.7 1999/08/19 18:35:10 mdw * Add a couple more flag constants. * @@ -150,7 +153,7 @@ enum { /* --- New style flag names --- */ enum { - OPTF_NOARG = 0 /* No argument */ + OPTF_NOARG = 0, /* No argument */ OPTF_ARGREQ = 1, /* Required argument */ OPTF_ARGOPT = 2, /* Optional argument */ OPTF_ARG = 3, /* Argument type bitmask */