[paludis-commits] r4588 - trunk/src/output
dleverton at svn.pioto.org
dleverton at svn.pioto.org
Sun Apr 20 17:50:47 UTC 2008
Author: dleverton
Date: 2008-04-20 17:50:46 +0000 (Sun, 20 Apr 2008)
New Revision: 4588
Modified:
trunk/src/output/console_install_task.cc
Log:
Remove "at most" from total download size display.
Modified: trunk/src/output/console_install_task.cc
===================================================================
--- trunk/src/output/console_install_task.cc 2008-04-20 03:36:38 UTC (rev 4587)
+++ trunk/src/output/console_install_task.cc 2008-04-20 17:50:46 UTC (rev 4588)
@@ -631,7 +631,7 @@
if (_download_size_overflow)
s << ", more than " << pretty_print_bytes(std::numeric_limits<unsigned long>::max()) << " to download";
else
- s << ", at most " << pretty_print_bytes(get_download_size()) << " to download";
+ s << ", " << pretty_print_bytes(get_download_size()) << " to download";
}
}
More information about the paludis-commits
mailing list