diff options
Diffstat (limited to 'posix/getopt.c')
-rw-r--r-- | posix/getopt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/posix/getopt.c b/posix/getopt.c index 76346c2ac3..f4507d42d6 100644 --- a/posix/getopt.c +++ b/posix/getopt.c @@ -701,7 +701,7 @@ _getopt_internal (argc, argv, optstring, longopts, longind, long_only) const struct option *pfound = NULL; int exact = 0; int ambig = 0; - int indfound; + int indfound = 0; int option_index; /* This is an option that requires an argument. */ @@ -743,7 +743,7 @@ _getopt_internal (argc, argv, optstring, longopts, longind, long_only) for (p = longopts, option_index = 0; p->name; p++, option_index++) if (!strncmp (p->name, nextchar, nameend - nextchar)) { - if (nameend - nextchar == strlen (p->name)) + if ((unsigned int) (nameend - nextchar) == strlen (p->name)) { /* Exact match found. */ pfound = p; |