summaryrefslogtreecommitdiff
path: root/Python/pyarena.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/pyarena.c')
-rw-r--r--Python/pyarena.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pyarena.c b/Python/pyarena.c
index 3b3c162074..33261b4314 100644
--- a/Python/pyarena.c
+++ b/Python/pyarena.c
@@ -150,7 +150,7 @@ PyArena_Malloc(PyArena *arena, size_t size)
arena->total_blocks++;
arena->total_block_size += arena->a_cur->ab_size;
if (arena->a_cur->ab_size > DEFAULT_BLOCK_SIZE)
- arena->total_big_blocks++;
+ ++arena->total_big_blocks;
#endif
}
return p;