about summary refs log tree commit diff stats
path: root/034address.cc
diff options
context:
space:
mode:
Diffstat (limited to '034address.cc')
-rw-r--r--034address.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/034address.cc b/034address.cc
index a6ed554f..6a688240 100644
--- a/034address.cc
+++ b/034address.cc
@@ -285,10 +285,10 @@ case ALLOCATE: {
 :(code)
 int allocate(int size) {
   // include space for refcount
-  size++;
+  ++size;
   trace(9999, "mem") << "allocating size " << size << end();
 //?   Total_alloc += size;
-//?   Num_alloc++;
+//?   ++Num_alloc;
   // Allocate Special-cases
   // compute the region of memory to return
   // really crappy at the moment