From d74c8a3f4e1131ee9dbd9898d141789832802306 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 30 Aug 2016 17:38:09 +0200 Subject: Fix 32-bit build --- src/nix/path-info.cc | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'src/nix') diff --git a/src/nix/path-info.cc b/src/nix/path-info.cc index b25e60db6a3f..d8b6232d47ca 100644 --- a/src/nix/path-info.cc +++ b/src/nix/path-info.cc @@ -1,11 +1,8 @@ #include "command.hh" #include "shared.hh" #include "store-api.hh" - - #include "json.hh" - #include #include @@ -60,8 +57,8 @@ struct CmdPathInfo : StorePathsCommand for (auto & storePath : storePaths) pathLen = std::max(pathLen, storePath.size()); - auto getClosureSize = [&](const Path & storePath) { - size_t totalSize = 0; + auto getClosureSize = [&](const Path & storePath) -> unsigned long long { + unsigned long long totalSize = 0; PathSet closure; store->computeFSClosure(storePath, closure, false, false); for (auto & p : closure) -- cgit 1.4.1