about summary refs log tree commit diff stats
path: root/065random.cc
diff options
context:
space:
mode:
Diffstat (limited to '065random.cc')
-rw-r--r--065random.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/065random.cc b/065random.cc
index 4cec27bd..45bcfd7d 100644
--- a/065random.cc
+++ b/065random.cc
@@ -36,7 +36,7 @@ put(Recipe_ordinal, "round", ROUND);
 :(before "End Primitive Recipe Checks")
 case ROUND: {
   if (SIZE(inst.ingredients) != 1) {
-    raise << maybe(get(Recipe, r).name) << "'round' requires exactly one ingredient, but got '" << to_original_string(inst) << "'\n" << end();
+    raise << maybe(get(Recipe, r).name) << "'round' requires exactly one ingredient, but got '" << inst.original_string << "'\n" << end();
     break;
   }
   if (!is_mu_number(inst.ingredients.at(0))) {