diff options
Diffstat (limited to 'src/util/getopt.c')
-rw-r--r-- | src/util/getopt.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/util/getopt.c b/src/util/getopt.c index 036e0f4be..4a7f35f51 100644 --- a/src/util/getopt.c +++ b/src/util/getopt.c @@ -866,7 +866,7 @@ GNgetopt_long (int argc, * @param argc number of arguments * @param argv actual arguments * @return index into argv with first non-option - * argument, or -1 on error + * argument, or #GNUNET_SYSERR on error */ int GNUNET_GETOPT_run (const char *binaryOptions, @@ -967,9 +967,9 @@ GNUNET_GETOPT_run (const char *binaryOptions, GNUNET_free (seen); /* call cleaners, if available */ - for (count = 0; NULL != allOptions[count].name; count++) - if (NULL != allOptions[count].cleaner) - allOptions[count].cleaner (allOptions[count].scls); + for (unsigned int i = 0; NULL != allOptions[i].name; i++) + if (NULL != allOptions[i].cleaner) + allOptions[i].cleaner (allOptions[i].scls); if (GNUNET_OK != cont) return cont; |