Remove constification of argv in main.

This commit is contained in:
Micah Cowan 2007-10-30 16:50:17 -07:00
parent a9fa555c51
commit 5e2ef06c07
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2007-10-30 Micah Cowan <micah@cowan.name>
* main.c (main): Declare argv parameter as char **argv, rather
than char *const *argv. This fixes usage of getopt_long,
regardless of whether getopt_long has a constified argv or not.
2007-10-22 Gisle Vanem <gvanem@broadpark.no>
* mswindows.c: Move INHIBIT_WRAP macro definition up with wget.h

View File

@ -688,7 +688,7 @@ There is NO WARRANTY, to the extent permitted by law.\n"), stdout);
int
main (int argc, char *const *argv)
main (int argc, char **argv)
{
char **url, **t;
int i, ret, longindex;