about summary refs log tree commit diff stats
path: root/032array.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-06-17 12:40:55 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-06-17 12:40:55 -0700
commitd0de5837f91b882256d04e876858b547913087ac (patch)
treef1796365b1834657c76528df64ae69b757533c56 /032array.cc
parentab6ed192b75f084a023cde85ba5b2b65e741d966 (diff)
downloadmu-d0de5837f91b882256d04e876858b547913087ac.tar.gz
1586
Diffstat (limited to '032array.cc')
-rw-r--r--032array.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/032array.cc b/032array.cc
index de9a05f1..87a97291 100644
--- a/032array.cc
+++ b/032array.cc
@@ -89,7 +89,7 @@ case INDEX: {
 //?   trace(Primitive_recipe_depth, "run") << "size of elements: " << size_of(element_type); //? 1
   long long int src = base_address + 1 + offset_val.at(0)*size_of(element_type);
   trace(Primitive_recipe_depth, "run") << "address to copy is " << src;
-  trace(Primitive_recipe_depth, "run") << "its type is " << element_type.at(0);
+  trace(Primitive_recipe_depth, "run") << "its type is " << Type[element_type.at(0)].name;
   reagent tmp;
   tmp.set_value(src);
   copy(element_type.begin(), element_type.end(), inserter(tmp.types, tmp.types.begin()));