--- apt-0.3.19cnc32/cmdline/apt-get.cc.orig Tue Feb 6 20:26:01 2001 +++ apt-0.3.19cnc32/cmdline/apt-get.cc Tue Feb 6 20:31:57 2001 @@ -814,10 +814,11 @@ c1out << _(" of archives. After unpacking "); // Size delta - if (Cache->UsrSize() > 0) - c1out << SizeToStr(Cache->UsrSize()) << _("B will be used.") << endl; - else if (Cache->UsrSize() < 0) - c1out << SizeToStr(-1*Cache->UsrSize()) << _("B will be freed.") << endl; + if (Cache->UsrSize() >= 0) + c1out << SizeToStr(Cache->UsrSize()) << _("B will be used."); + else /* if (Cache->UsrSize() < 0) */ + c1out << SizeToStr(-1*Cache->UsrSize()) << _("B will be freed."); + c1out << endl; if (_error->PendingError() == true) return false;