Commit e78410c1 by Gabriel Dos Reis Committed by Gabriel Dos Reis

* getopt1.c (getopt_long_only): Fix thinko.

From-SVN: r97114
parent 6da879de
2005-03-27 Gabriel Dos Reis <gdr@integrable-solutions.net> 2005-03-27 Gabriel Dos Reis <gdr@integrable-solutions.net>
* getopt1.c (getopt_long_only): Fix thinko.
2005-03-27 Gabriel Dos Reis <gdr@integrable-solutions.net>
Convert libiberty to use ISO C prototype style 4/n. Convert libiberty to use ISO C prototype style 4/n.
* hashtab.c (higher_prime_index, hash_pointer, eq_pointer, * hashtab.c (higher_prime_index, hash_pointer, eq_pointer,
htab_size, htab_elements, htab_mod_1, htab_mod, htab_mod_m2, htab_size, htab_elements, htab_mod_1, htab_mod, htab_mod_m2,
......
...@@ -78,7 +78,7 @@ getopt_long (int argc, char *const *argv, const char *options, ...@@ -78,7 +78,7 @@ getopt_long (int argc, char *const *argv, const char *options,
instead. */ instead. */
int int
getopt_long_only (int argc, char *const *argv, const struct option *options, getopt_long_only (int argc, char *const *argv, const char *options,
const struct option *long_options, int *opt_index) const struct option *long_options, int *opt_index)
{ {
return _getopt_internal (argc, argv, options, long_options, opt_index, 1); return _getopt_internal (argc, argv, options, long_options, opt_index, 1);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment