diff options
author | Michael Vogt <mvo@debian.org> | 2010-10-01 15:55:10 +0200 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2010-10-01 15:55:10 +0200 |
commit | 6774b53da5215ae1c3ebe6a3fff496d61cd779f7 (patch) | |
tree | 02b9ad23d717bae4d04d85bf0c9c676a52920d53 /apt-pkg/contrib/strutl.cc | |
parent | ffde0f7df221d65c698907066591ea425e0b1339 (diff) | |
parent | 63cb76531aa8daca9f1da02a1f3249f5badbc507 (diff) |
merged from lp:~donkult/apt/sid
Diffstat (limited to 'apt-pkg/contrib/strutl.cc')
-rw-r--r-- | apt-pkg/contrib/strutl.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apt-pkg/contrib/strutl.cc b/apt-pkg/contrib/strutl.cc index c1844de40..987f4c3a4 100644 --- a/apt-pkg/contrib/strutl.cc +++ b/apt-pkg/contrib/strutl.cc @@ -340,13 +340,13 @@ string SizeToStr(double Size) { if (ASize < 100 && I != 0) { - sprintf(S,"%'.1f%c",ASize,Ext[I]); + sprintf(S,"%'.1f %c",ASize,Ext[I]); break; } if (ASize < 10000) { - sprintf(S,"%'.0f%c",ASize,Ext[I]); + sprintf(S,"%'.0f %c",ASize,Ext[I]); break; } ASize /= 1000.0; |