--- 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:30:02 2001 @@ -815,9 +815,12 @@ // Size delta if (Cache->UsrSize() > 0) - c1out << SizeToStr(Cache->UsrSize()) << _("B will be used.") << endl; + c1out << SizeToStr(Cache->UsrSize()) << _("B will be used."); else if (Cache->UsrSize() < 0) - c1out << SizeToStr(-1*Cache->UsrSize()) << _("B will be freed.") << endl; + c1out << SizeToStr(-1*Cache->UsrSize()) << _("B will be freed."); + else /* if (Cache->UsrSize() == 0) */ + c1out << _("used disk space will remain the same."); + c1out << endl; if (_error->PendingError() == true) return false;