diff options
Diffstat (limited to 'third_party/nix/src/libexpr/attr-path.cc')
-rw-r--r-- | third_party/nix/src/libexpr/attr-path.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/nix/src/libexpr/attr-path.cc b/third_party/nix/src/libexpr/attr-path.cc index a267e82b6ebe..86ebeec2fb15 100644 --- a/third_party/nix/src/libexpr/attr-path.cc +++ b/third_party/nix/src/libexpr/attr-path.cc @@ -39,7 +39,7 @@ static Strings parseAttrPath(const std::string& s) { } Value* findAlongAttrPath(EvalState& state, const std::string& attrPath, - Bindings& autoArgs, Value& vIn) { + Bindings* autoArgs, Value& vIn) { Strings tokens = parseAttrPath(attrPath); Error attrError = |