]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/acquire.cc
Add bash-completion support for the "apt" command
[apt.git] / 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;
    });