about summary refs log tree commit diff stats
path: root/031array.cc
diff options
context:
space:
mode:
Diffstat (limited to '031array.cc')
-rw-r--r--031array.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/031array.cc b/031array.cc
index ac1cc848..c2cbfd7f 100644
--- a/031array.cc
+++ b/031array.cc
@@ -54,7 +54,7 @@ case CREATE_ARRAY: {
   trace(9999, "mem") << "storing " << array_length << " in location " << base_address << end();
   put(Memory, base_address, array_length);  // in array elements
   int size = size_of(product);  // in locations
-  trace(9998, "run") << "creating array of size " << size << '\n' << end();
+  trace(9998, "run") << "creating array of size " << size << end();
   // initialize array
   for (int i = 1; i <= size_of(product); ++i) {
     put(Memory, base_address+i, 0);