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.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/010vm.cc b/010vm.cc
index 85bb4478..e9c3f354 100644
--- a/010vm.cc
+++ b/010vm.cc
@@ -241,7 +241,6 @@ inline string mem_addr_string(uint32_t addr, uint32_t size) {
   return out.str();
 }
 
-
 inline void write_mem_u8(uint32_t addr, uint8_t val) {
   uint8_t* handle = mem_addr_u8(addr);
   if (handle != NULL) *handle = val;