aboutsummaryrefslogtreecommitdiff
path: root/wget.c
diff options
context:
space:
mode:
Diffstat (limited to 'wget.c')
-rw-r--r--wget.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/wget.c b/wget.c
index a5c3e7baf..e3e6eed79 100644
--- a/wget.c
+++ b/wget.c
@@ -49,7 +49,7 @@ static char *curfile; /* Name of current file being transferred. */
49static struct timeval start; /* Time a transfer started. */ 49static struct timeval start; /* Time a transfer started. */
50volatile unsigned long statbytes; /* Number of bytes transferred so far. */ 50volatile unsigned long statbytes; /* Number of bytes transferred so far. */
51/* For progressmeter() -- number of seconds before xfer considered "stalled" */ 51/* For progressmeter() -- number of seconds before xfer considered "stalled" */
52#define STALLTIME 5 52static const int STALLTIME = 5;
53#endif 53#endif
54 54
55int wget_main(int argc, char **argv) 55int wget_main(int argc, char **argv)
@@ -515,7 +515,7 @@ progressmeter(int flag)
515 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 515 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
516 * SUCH DAMAGE. 516 * SUCH DAMAGE.
517 * 517 *
518 * $Id: wget.c,v 1.17 2001/01/22 22:48:42 andersen Exp $ 518 * $Id: wget.c,v 1.18 2001/01/23 22:30:04 markw Exp $
519 */ 519 */
520 520
521 521