about summary refs log tree commit diff stats
path: root/039location_array.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-10-19 22:10:35 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-10-19 22:10:35 -0700
commit6c96a437cef5140197660a0903309f11c364bf78 (patch)
treeea3b5a4d90100329eeb58a76773a500a6bee71da /039location_array.cc
parent5a820205054a9c45a9b4dc71aa1f26b4612ec76d (diff)
downloadmu-6c96a437cef5140197660a0903309f11c364bf78.tar.gz
3522
Diffstat (limited to '039location_array.cc')
-rw-r--r--039location_array.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/039location_array.cc b/039location_array.cc
index e43717a5..648ebad6 100644
--- a/039location_array.cc
+++ b/039location_array.cc
@@ -40,7 +40,7 @@ case TO_LOCATION_ARRAY: {
   // initialize array length
   put(Memory, result+1, array_size);
   // now copy over data
-  for (int i = 0; i < array_size; ++i)
+  for (int i = 0;  i < array_size;  ++i)
     put(Memory, result+2+i, ingredients.at(0).at(i));
   break;
 }