diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2010-08-27T12·10+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2010-08-27T12·10+0000 |
commit | df50916e46d80e640a36076f1c38c355b89999d4 (patch) | |
tree | d51d5f56e8a3b48d7fe24ab61cd8bdc7d835be88 | |
parent | c67eccc26d42bce9496024ac77eaa7e4ff725d01 (diff) |
* Oops - "null" was displayed as "true".
-rw-r--r-- | src/libexpr/eval.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/eval.cc b/src/libexpr/eval.cc index 96bda43a322a..e55f28822b6a 100644 --- a/src/libexpr/eval.cc +++ b/src/libexpr/eval.cc @@ -39,7 +39,7 @@ std::ostream & operator << (std::ostream & str, const Value & v) str << v.path; // !!! escaping? break; case tNull: - str << "true"; + str << "null"; break; case tAttrs: { str << "{ "; |