Преглед изворни кода

Use 0llu instead of 0ull in one place too

Gbp-Dch: ignore
Julian Andres Klode пре 10 година
родитељ
комит
e551e1237d
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      apt-pkg/acquire.cc

+ 1 - 1
apt-pkg/acquire.cc

@@ -730,7 +730,7 @@ bool pkgAcquire::Clean(string Dir)
 /* This is the total number of bytes needed */
 /* This is the total number of bytes needed */
 APT_PURE unsigned long long pkgAcquire::TotalNeeded()
 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) {
       [](unsigned long long const T, Item const * const I) {
 	 return T + I->FileSize;
 	 return T + I->FileSize;
    });
    });