about summary refs log tree commit diff stats
path: root/011load.cc
diff options
context:
space:
mode:
Diffstat (limited to '011load.cc')
-rw-r--r--011load.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/011load.cc b/011load.cc
index ca66a8f4..6aae80f9 100644
--- a/011load.cc
+++ b/011load.cc
@@ -127,7 +127,7 @@ bool next_instruction(istream& in, instruction* curr) {
     raise << "instruction prematurely ended with '<-'\n" << end();
     return false;
   }
-  curr->old_name = curr->name = *p;  p++;
+  curr->old_name = curr->name = *p;  ++p;
   // curr->operation will be set in a later layer
 
   for (; p != words.end(); ++p)