diff options
Diffstat (limited to 'src/libexpr/nixexpr.cc')
-rw-r--r-- | src/libexpr/nixexpr.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/nixexpr.cc b/src/libexpr/nixexpr.cc index 5957618702a2..2632d9f3ff8b 100644 --- a/src/libexpr/nixexpr.cc +++ b/src/libexpr/nixexpr.cc @@ -43,7 +43,7 @@ void ExprVar::show(std::ostream & str) void ExprSelect::show(std::ostream & str) { - str << "(" << *e << ")." << name; + str << "(" << *e << ")." << showAttrPath(attrPath); } void ExprOpHasAttr::show(std::ostream & str) |