about summary refs log tree commit diff stats
path: root/061recipe.cc
diff options
context:
space:
mode:
Diffstat (limited to '061recipe.cc')
-rw-r--r--061recipe.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/061recipe.cc b/061recipe.cc
index 4e6f2b83..7d9bb3af 100644
--- a/061recipe.cc
+++ b/061recipe.cc
@@ -180,7 +180,7 @@ recipe f x:boolean -> y:boolean [
 :(before "End Matching Types For Literal(to)")
 if (is_mu_recipe(to)) {
   if (!contains_key(Recipe, from.value)) {
-    raise_error << "trying to store recipe " << from.name << " into " << debug_string(to) << " but there's no such recipe\n" << end();
+    raise_error << "trying to store recipe " << from.name << " into " << to_string(to) << " but there's no such recipe\n" << end();
     return false;
   }
   const recipe& rrhs = get(Recipe, from.value);