瀏覽代碼

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 */
 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;
    });