diff options
Diffstat (limited to 'src/nix-store/dotgraph.cc')
-rw-r--r-- | src/nix-store/dotgraph.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nix-store/dotgraph.cc b/src/nix-store/dotgraph.cc index 4b068514e4e5..989945600f23 100644 --- a/src/nix-store/dotgraph.cc +++ b/src/nix-store/dotgraph.cc @@ -1,6 +1,6 @@ #include "dotgraph.hh" #include "util.hh" -#include "store.hh" +#include "store-api.hh" #include "db.hh" #include <iostream> @@ -112,7 +112,7 @@ void printDotGraph(const PathSet & roots) cout << makeNode(path, symbolicName(path), "#ff0000"); PathSet references; - queryReferences(noTxn, path, references); + store->queryReferences(path, references); for (PathSet::iterator i = references.begin(); i != references.end(); ++i) |