summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Andres Klode <jak@debian.org>2015-12-07 14:45:52 +0100
committerJulian Andres Klode <jak@debian.org>2015-12-07 14:45:52 +0100
commite551e1237da3cbba71f08f17dc57b07832b8d9ac (patch)
tree489e93c6e071e6e8ad4eb2435d681ea27a1c2573
parent5a97834817dd43b7833881f38f512a9f2fdac8a9 (diff)
Use 0llu instead of 0ull in one place too
Gbp-Dch: ignore
-rw-r--r--apt-pkg/acquire.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/acquire.cc b/apt-pkg/acquire.cc
index cb8741603..3010f55aa 100644
--- a/apt-pkg/acquire.cc
+++ b/apt-pkg/acquire.cc
@@ -730,7 +730,7 @@ bool pkgAcquire::Clean(string Dir)
/* This is the total number of bytes needed */
APT_PURE unsigned long long pkgAcquire::TotalNeeded()
{
- return std::accumulate(ItemsBegin(), ItemsEnd(), 0ull,
+ return std::accumulate(ItemsBegin(), ItemsEnd(), 0llu,
[](unsigned long long const T, Item const * const I) {
return T + I->FileSize;
});