about summary refs log tree commit diff
path: root/src/nix-store
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2016-01-28T14·16+0100
committerEelco Dolstra <eelco.dolstra@logicblox.com>2016-01-28T14·16+0100
commit9f14d7d33a0fa2ea9a9a135664a77445972738a6 (patch)
tree69499886da815a737697f8bccc984f67e5fb312b /src/nix-store
parentca6d287b338d30071bec4e4cd20d9a4c2577bf49 (diff)
printMissing(): Propagate store argument
Diffstat (limited to 'src/nix-store')
-rw-r--r--src/nix-store/nix-store.cc2
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;