about summary refs log tree commit diff stats
path: root/cpp/013run
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-04-12 22:42:07 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-04-12 22:42:07 -0700
commit0edc9471c773ab0ce0ae0abcffacf41e1440742d (patch)
treeb5f7242ed993b796a50c4bdb79ff1ae3d734bcc9 /cpp/013run
parent5a9520332a70f8d2e86bc3564bcd4bffde182e87 (diff)
downloadmu-0edc9471c773ab0ce0ae0abcffacf41e1440742d.tar.gz
1055
Diffstat (limited to 'cpp/013run')
-rw-r--r--cpp/013run2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/013run b/cpp/013run
index 0a1f6529..5ba9af70 100644
--- a/cpp/013run
+++ b/cpp/013run
@@ -144,7 +144,7 @@ void write_memory(reagent x, vector<int> data) {
   if (is_dummy(x)) return;
   int base = x.value;
   if (size_of(x) != data.size())
-    raise << "size mismatch in storing to " << x.to_string();
+    raise << "size mismatch in storing to " << x.to_string() << '\n';
   for (size_t offset = 0; offset < data.size(); ++offset) {
     trace("mem") << "storing " << data[offset] << " in location " << base+offset;
     Memory[base+offset] = data[offset];