diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2020-07-30 13:10:49 +0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2020-07-30 13:34:04 +0200 |
commit | 3f6e88a5527dcc4d58e3147f78388a88eb8896e0 (patch) | |
tree | d1677cf561e302868235ea87e89741a050b0d543 /src/libexpr/primops.cc | |
parent | ebee2b7852a8c0441e9470a0df8ec3c71d322109 (diff) |
unsigned long long -> uint64_t
Diffstat (limited to 'src/libexpr/primops.cc')
-rw-r--r-- | src/libexpr/primops.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/primops.cc b/src/libexpr/primops.cc index 5059286b3..a98cadc80 100644 --- a/src/libexpr/primops.cc +++ b/src/libexpr/primops.cc @@ -65,7 +65,7 @@ void EvalState::realiseContext(const PathSet & context) /* For performance, prefetch all substitute info. */ StorePathSet willBuild, willSubstitute, unknown; - unsigned long long downloadSize, narSize; + uint64_t downloadSize, narSize; store->queryMissing(drvs, willBuild, willSubstitute, unknown, downloadSize, narSize); store->buildPaths(drvs); |