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
commit6fd92dc44f6bd6d0bb0308b298d21f181b083bd2 (patch)
treeb11799bfbb86c474c26cc08abf39f7b45b33f9da /Python/pyarena.c
parentcb9426b5f4994c50f7981b9c3753ab7832917d25 (diff)
downloadcpython-git-6fd92dc44f6bd6d0bb0308b298d21f181b083bd2.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;