]> sjero.net Git - wget/blobdiff - src/main.c
[svn] Better document html-parse macros.
[wget] / src / main.c
index acbb9921567c9702c6dbbe6802fc3e78a46663f1..3fe47de026a8c53741ddfef9af76eebe25deffb2 100644 (file)
@@ -804,7 +804,7 @@ Can't timestamp and not clobber old files at the same time.\n"));
     set_progress_implementation (opt.progress_type);
 
   /* Allocate basic pointer.  */
-  url = ALLOCA_ARRAY (char *, nurl + 1);
+  url = (char **) alloca ((nurl + 1) * sizeof (char *));
   /* Fill in the arguments.  */
   for (i = 0; i < nurl; i++, optind++)
     {