aboutsummaryrefslogtreecommitdiff
path: root/src/nix-store/xmlgraph.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/nix-store/xmlgraph.cc')
-rw-r--r--src/nix-store/xmlgraph.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nix-store/xmlgraph.cc b/src/nix-store/xmlgraph.cc
index 98ab9e626..f88266bbb 100644
--- a/src/nix-store/xmlgraph.cc
+++ b/src/nix-store/xmlgraph.cc
@@ -33,7 +33,7 @@ static string makeNode(const string & id)
}
-void printXmlGraph(const PathSet & roots)
+void printXmlGraph(StoreAPI & store, const PathSet & roots)
{
PathSet workList(roots);
PathSet doneSet;
@@ -51,7 +51,7 @@ void printXmlGraph(const PathSet & roots)
cout << makeNode(path);
PathSet references;
- store->queryReferences(path, references);
+ store.queryReferences(path, references);
for (PathSet::iterator i = references.begin();
i != references.end(); ++i)