summaryrefslogtreecommitdiff
path: root/Python/pyarena.c
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2006-03-02 21:14:45 +0000
committerTim Peters <tim.peters@gmail.com>2006-03-02 21:14:45 +0000
commit187fcdd7887dde2730583ca696c41d9ae309ee70 (patch)
tree01ffab6d35c231e015327941ea30821a688db712 /Python/pyarena.c
parent01b09d41b5a3df1815cb73b20ae90f4754336368 (diff)
downloadcpython-187fcdd7887dde2730583ca696c41d9ae309ee70.tar.gz
Added words about what PyArena_Malloc() does.
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;