about summary refs log tree commit diff stats
path: root/cpp/026assert.cc
diff options
context:
space:
mode:
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';