From: Julian Andres Klode Date: Mon, 7 Dec 2015 13:45:52 +0000 (+0100) Subject: Use 0llu instead of 0ull in one place too X-Git-Tag: 1.1.4~1 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/e551e1237da3cbba71f08f17dc57b07832b8d9ac?hp=5a97834817dd43b7833881f38f512a9f2fdac8a9 Use 0llu instead of 0ull in one place too Gbp-Dch: ignore --- 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; });