about summary refs log tree commit diff stats
path: root/010vm.cc
diff options
context:
space:
mode:
Diffstat (limited to '010vm.cc')
-rw-r--r--010vm.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/010vm.cc b/010vm.cc
index f330b29e..af60896a 100644
--- a/010vm.cc
+++ b/010vm.cc
@@ -250,7 +250,7 @@ string slurp_until(istream& in, char delim) {
 
 void dump_memory() {
   for (map<index_t, long long int>::iterator p = Memory.begin(); p != Memory.end(); ++p) {
-    cout << p->first << ": " << value(p->second) << '\n';
+    cout << p->first << ": " << p->second << '\n';
   }
 }
 :(before "End Includes")