Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2014-12-02 | Fix warning in posix/tst-getopt_long1.c. | Joseph Myers | 1 | -1/+1 | |
This patch fixes a "discards qualifiers" warning in posix/tst-getopt_long1.c. glibc is built with -Wwrite-strings, meaning a char * cannot be initialized directly with a string constant; the patch casts the string constants to char *. Tested for x86_64. * posix/tst-getopt_long1.c (do_test): Cast elements of argv array to char *. | |||||
2011-05-15 | Provide more helpful error message in getopt | Ulrich Drepper | 1 | -0/+62 | |
If provide with an ambiguous long option we now show all the possibilities. |