about summary refs log tree commit diff stats
path: root/010vm.cc
diff options
context:
space:
mode:
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 f698cc6c..1bd45033 100644
--- a/010vm.cc
+++ b/010vm.cc
@@ -496,7 +496,7 @@ string to_string(const type_tree* type) {
 
 void dump(const type_tree* x, ostream& out) {
   if (!x->left && !x->right) {
-    out << x->value;
+    dump(x->value, out);
     return;
   }
   out << '(';