about summary refs log tree commit diff stats
path: root/032array.cc
diff options
context:
space:
mode:
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 1a1b2d17..1d64ff90 100644
--- a/032array.cc
+++ b/032array.cc
@@ -276,7 +276,7 @@ case INDEX_ADDRESS: {
   reagent base = inst.ingredients.at(0);
   canonize_type(base);
   if (!is_mu_array(base)) {
-    raise_error << current_recipe_name () << "'index-address' on a non-array " << base.original_string << '\n' << end();
+    raise_error << maybe(Recipe[r].name) << "'index-address' on a non-array " << base.original_string << '\n' << end();
     break;
   }
   if (inst.products.empty()) break;