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/libstore/remote-store.hh | |
parent | ebee2b7852a8c0441e9470a0df8ec3c71d322109 (diff) |
unsigned long long -> uint64_t
Diffstat (limited to 'src/libstore/remote-store.hh')
-rw-r--r-- | src/libstore/remote-store.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/remote-store.hh b/src/libstore/remote-store.hh index 3c1b78b6a..eb6f225b1 100644 --- a/src/libstore/remote-store.hh +++ b/src/libstore/remote-store.hh @@ -94,7 +94,7 @@ public: void queryMissing(const std::vector<StorePathWithOutputs> & targets, StorePathSet & willBuild, StorePathSet & willSubstitute, StorePathSet & unknown, - unsigned long long & downloadSize, unsigned long long & narSize) override; + uint64_t & downloadSize, uint64_t & narSize) override; void connect() override; |