diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-01-28T14·16+0100 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-01-28T14·16+0100 |
commit | 9f14d7d33a0fa2ea9a9a135664a77445972738a6 (patch) | |
tree | 69499886da815a737697f8bccc984f67e5fb312b /src/nix-store | |
parent | ca6d287b338d30071bec4e4cd20d9a4c2577bf49 (diff) |
printMissing(): Propagate store argument
Diffstat (limited to 'src/nix-store')
-rw-r--r-- | src/nix-store/nix-store.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nix-store/nix-store.cc b/src/nix-store/nix-store.cc index b49ebd09475c..22b3be27aa79 100644 --- a/src/nix-store/nix-store.cc +++ b/src/nix-store/nix-store.cc @@ -140,7 +140,7 @@ static void opRealise(Strings opFlags, Strings opArgs) } if (settings.get("print-missing", true)) - printMissing(willBuild, willSubstitute, unknown, downloadSize, narSize); + printMissing(*store, willBuild, willSubstitute, unknown, downloadSize, narSize); if (dryRun) return; |