summaryrefslogtreecommitdiffstats
path: root/Objects/obmalloc.c
diff options
context:
space:
mode:
authorWalter Dörwald <walter@livinglogic.de>2003-06-17 15:48:11 (GMT)
committerWalter Dörwald <walter@livinglogic.de>2003-06-17 15:48:11 (GMT)
commite0a1bb6341ea87d811947c84dcce3d84147a93fd (patch)
treeea2841aaf5a4e6745d2356e4f795a8e3058cedf7 /Objects/obmalloc.c
parent53e54fd934d141f887e69f845f357fffbdc21822 (diff)
downloadcpython-e0a1bb6341ea87d811947c84dcce3d84147a93fd.zip
cpython-e0a1bb6341ea87d811947c84dcce3d84147a93fd.tar.gz
cpython-e0a1bb6341ea87d811947c84dcce3d84147a93fd.tar.bz2
Whitespace normalization.
Diffstat (limited to 'Objects/obmalloc.c')
-rw-r--r--Objects/obmalloc.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/Objects/obmalloc.c b/Objects/obmalloc.c
index cd85657..7e5fd4a 100644
--- a/Objects/obmalloc.c
+++ b/Objects/obmalloc.c
@@ -651,9 +651,9 @@ PyObject_Malloc(size_t nbytes)
UNLOCK();
return (void *)bp;
}
- /*
- * Allocate new pool
- */
+ /*
+ * Allocate new pool
+ */
if (nfreepools) {
commit_pool:
--nfreepools;
@@ -663,9 +663,9 @@ PyObject_Malloc(size_t nbytes)
pool->szidx = DUMMY_SIZE_IDX;
goto init_pool;
}
- /*
- * Allocate new arena
- */
+ /*
+ * Allocate new arena
+ */
#ifdef WITH_MEMORY_LIMITS
if (!(narenas < MAX_ARENAS)) {
UNLOCK();