diff options
Diffstat (limited to 'third_party/nix/src/libexpr/eval.cc')
-rw-r--r-- | third_party/nix/src/libexpr/eval.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/nix/src/libexpr/eval.cc b/third_party/nix/src/libexpr/eval.cc index f35f56c83c7d..704a05b197ba 100644 --- a/third_party/nix/src/libexpr/eval.cc +++ b/third_party/nix/src/libexpr/eval.cc @@ -89,7 +89,7 @@ static void printValue(std::ostream& str, std::set<const Value*>& active, break; case tAttrs: { str << "{ "; - for (auto& i : v.attrs->lexicographicOrder()) { + for (auto& i : v.attrs->SortedByKeys()) { str << i->name << " = "; printValue(str, active, *i->value); str << "; "; |