about summary refs log tree commit diff stats
path: root/032array.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-10-29 11:56:10 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-10-29 11:56:10 -0700
commitdd2e01e43e971c9325b343fa3e554097e829c508 (patch)
tree6c101a638967fc7120b9e421cf63837f1c9b6c86 /032array.cc
parentb2ec0969e9f7ef7c3267545efbed907c15084695 (diff)
downloadmu-dd2e01e43e971c9325b343fa3e554097e829c508.tar.gz
2311
Diffstat (limited to '032array.cc')
-rw-r--r--032array.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/032array.cc b/032array.cc
index 32a8f544..b9a8bc9a 100644
--- a/032array.cc
+++ b/032array.cc
@@ -53,7 +53,7 @@ case CREATE_ARRAY: {
   // initialize array size, so that size_of will work
   Memory[base_address] = array_size;  // in array elements
   long long int size = size_of(product);  // in locations
-  trace("run") << "creating array of size " << size << '\n' << end();
+  trace(9998, "run") << "creating array of size " << size << '\n' << end();
   // initialize array
   for (long long int i = 1; i <= size_of(product); ++i) {
     Memory[base_address+i] = 0;