From e551e1237da3cbba71f08f17dc57b07832b8d9ac Mon Sep 17 00:00:00 2001 From: Julian Andres Klode Date: Mon, 7 Dec 2015 14:45:52 +0100 Subject: Use 0llu instead of 0ull in one place too Gbp-Dch: ignore --- apt-pkg/acquire.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }); -- cgit v1.2.3