From c780c1124ec6711f09b9855c3b574b6655af6625 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 4 Feb 2016 15:10:47 +0100 Subject: More of the same --- src/nix-store/dotgraph.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/nix-store/dotgraph.cc') diff --git a/src/nix-store/dotgraph.cc b/src/nix-store/dotgraph.cc index 83472b0a3bc3..8735cf9b667b 100644 --- a/src/nix-store/dotgraph.cc +++ b/src/nix-store/dotgraph.cc @@ -94,7 +94,7 @@ void printClosure(const Path & nePath, const StoreExpr & fs) #endif -void printDotGraph(Store & store, const PathSet & roots) +void printDotGraph(ref store, const PathSet & roots) { PathSet workList(roots); PathSet doneSet; @@ -111,7 +111,7 @@ void printDotGraph(Store & store, const PathSet & roots) cout << makeNode(path, symbolicName(path), "#ff0000"); PathSet references; - store.queryReferences(path, references); + store->queryReferences(path, references); for (PathSet::iterator i = references.begin(); i != references.end(); ++i) -- cgit 1.4.1