about summary refs log tree commit diff stats
path: root/010vm.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-02-22 15:44:27 -0800
committerKartik K. Agaram <vc@akkartik.com>2016-02-22 15:44:27 -0800
commit6b3fc927c2fbad4bd555bc6952ae960e7d191d62 (patch)
treec7128c8081ae399fbdee8a70b187caafee153bb1 /010vm.cc
parentf86084013db0fc8f827badea151bfb03bc9ac156 (diff)
downloadmu-6b3fc927c2fbad4bd555bc6952ae960e7d191d62.tar.gz
2687
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 << '(';