about summary refs log tree commit diff stats
path: root/cpp/026assert.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-05-05 17:20:11 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-05-05 17:34:18 -0700
commit6673e1fc4527147da453435203434394bbeaa513 (patch)
tree4d2fa9f732c2b229939bd450511b4c329085d036 /cpp/026assert.cc
parentca12558ef7f0678cd7b4aee9e8dda459e61f1bc1 (diff)
downloadmu-6673e1fc4527147da453435203434394bbeaa513.tar.gz
1265
Diffstat (limited to 'cpp/026assert.cc')
-rw-r--r--cpp/026assert.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/026assert.cc b/cpp/026assert.cc
index 785db1f5..6ab49db2 100644
--- a/cpp/026assert.cc
+++ b/cpp/026assert.cc
@@ -12,7 +12,7 @@ Recipe_number["assert"] = ASSERT;
 :(before "End Primitive Recipe Implementations")
 case ASSERT: {
   trace("run") << "ingredient 0 is " << current_instruction().ingredients[0].name;
-  vector<int> arg0 = read_memory(current_instruction().ingredients[0]);
+  vector<long long int> arg0 = read_memory(current_instruction().ingredients[0]);
   assert(arg0.size() == 1);
   if (arg0[0] == 0)
     raise << current_instruction().ingredients[1].name << '\n';