X-Git-Url: http://sjero.net/git/?p=wget;a=blobdiff_plain;f=src%2Fmain.c;h=a70812333e2be7881bec7a505c36bc0e5c8df29a;hp=c39432a2589a7c0b5578a576ffabd6e5e5c03dbd;hb=002def87d2d562d9d5b16cfcacc1e0a7dc233ca8;hpb=b79e5bb0d39941538525a2d6e3e9a8e1a64fc102 diff --git a/src/main.c b/src/main.c index c39432a2..a7081233 100644 --- a/src/main.c +++ b/src/main.c @@ -61,7 +61,7 @@ so, delete this exception statement from your version. */ struct options opt; -extern LARGE_INT total_downloaded_bytes; +extern SUM_SIZE_INT total_downloaded_bytes; extern char *version_string; extern struct cookie_jar *wget_cookie_jar; @@ -961,13 +961,14 @@ Can't timestamp and not clobber old files at the same time.\n")); { logprintf (LOG_NOTQUIET, _("\nFINISHED --%s--\nDownloaded: %s bytes in %d files\n"), - time_str (NULL), with_thousand_seps_large (total_downloaded_bytes), + time_str (NULL), + with_thousand_seps_sum (total_downloaded_bytes), opt.numurls); /* Print quota warning, if exceeded. */ if (opt.quota && total_downloaded_bytes > opt.quota) logprintf (LOG_NOTQUIET, _("Download quota (%s bytes) EXCEEDED!\n"), - with_thousand_seps_large (opt.quota)); + with_thousand_seps_sum (opt.quota)); } if (opt.cookies_output)