]> sjero.net Git - wget/blobdiff - src/main.c
[svn] Rewrite with_thousand_seps to be size-agnostic. Remove printing of separators
[wget] / src / main.c
index a70812333e2be7881bec7a505c36bc0e5c8df29a..797472cd3008096d48f9f9018aee4f407fcdaefb 100644 (file)
@@ -960,15 +960,15 @@ Can't timestamp and not clobber old files at the same time.\n"));
       || (opt.input_filename && total_downloaded_bytes != 0))
     {
       logprintf (LOG_NOTQUIET,
-                _("\nFINISHED --%s--\nDownloaded: %s bytes in %d files\n"),
+                _("\nFINISHED --%s--\nDownloaded: %s in %d files\n"),
                 time_str (NULL),
-                with_thousand_seps_sum (total_downloaded_bytes),
+                human_readable (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_sum (opt.quota));
+                  _("Download quota of %s EXCEEDED!\n"),
+                  human_readable (opt.quota));
     }
 
   if (opt.cookies_output)