about summary refs log tree commit diff stats
path: root/031address.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-10-04 09:03:41 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-10-04 09:03:41 -0700
commitb1cf3bc92d1e29a5711aaf8f6498f0106e4b222a (patch)
tree34d453e02a84151da82a3a5b6566274014a1dd32 /031address.cc
parent4379069e8ed25f97822388bbcd7f5f53a0f24d83 (diff)
downloadmu-b1cf3bc92d1e29a5711aaf8f6498f0106e4b222a.tar.gz
2237
Diffstat (limited to '031address.cc')
-rw-r--r--031address.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/031address.cc b/031address.cc
index d5f00b56..4f5b307a 100644
--- a/031address.cc
+++ b/031address.cc
@@ -190,7 +190,7 @@ Recipe_ordinal["$dump"] = _DUMP;
 :(before "End Primitive Recipe Implementations")
 case _DUMP: {
   reagent after_canonize = canonize(current_instruction().ingredients.at(0));
-  cerr << maybe(current_recipe_name()) << "" << current_instruction().ingredients.at(0).name << ' ' << no_scientific(current_instruction().ingredients.at(0).value) << " => " << no_scientific(after_canonize.value) << " => " << no_scientific(Memory[after_canonize.value]) << '\n';
+  cerr << maybe(current_recipe_name()) << current_instruction().ingredients.at(0).name << ' ' << no_scientific(current_instruction().ingredients.at(0).value) << " => " << no_scientific(after_canonize.value) << " => " << no_scientific(Memory[after_canonize.value]) << '\n';
   break;
 }