]> git.saurik.com Git - apt.git/commitdiff
Use 0llu instead of 0ull in one place too
authorJulian Andres Klode <jak@debian.org>
Mon, 7 Dec 2015 13:45:52 +0000 (14:45 +0100)
committerJulian Andres Klode <jak@debian.org>
Mon, 7 Dec 2015 13:45:52 +0000 (14:45 +0100)
Gbp-Dch: ignore

apt-pkg/acquire.cc

index cb8741603754ccdfa5b29c3d1492f17d2e388079..3010f55aa1ae27a2ad7a9f262a425c5b4eb694df 100644 (file)
@@ -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;
    });