about summary refs log tree commit diff stats
path: root/010vm.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-10-27 14:38:57 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-10-27 14:38:57 -0700
commita17f9186c17073e07eef6f046dcc1b15f08ed73c (patch)
treedec42cd5528b10c6a7cb6fb887342e5b526f62eb /010vm.cc
parent79eef536f5fc2c427e3601e0dcca705aad1d7023 (diff)
downloadmu-a17f9186c17073e07eef6f046dcc1b15f08ed73c.tar.gz
2291 - parsing property trees
Diffstat (limited to '010vm.cc')
-rw-r--r--010vm.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/010vm.cc b/010vm.cc
index 23f9d9d6..5b4b9a16 100644
--- a/010vm.cc
+++ b/010vm.cc
@@ -366,7 +366,7 @@ void dump_property(const string_tree* property, ostringstream& out) {
   if (property->right)
     dump_property(property->right, out);
   else
-    out << " : <>";
+    out << "<>";
   out << ">";
 }