diff options
-rw-r--r-- | 010vm.cc | 2 |
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 << '('; |