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