]> granicus.if.org Git - python/commitdiff
Whitespace normalization.
authorWalter Dörwald <walter@livinglogic.de>
Tue, 17 Jun 2003 15:48:11 +0000 (15:48 +0000)
committerWalter Dörwald <walter@livinglogic.de>
Tue, 17 Jun 2003 15:48:11 +0000 (15:48 +0000)
Objects/obmalloc.c

index cd85657150b9ffa30a5086b6eb67adb276344db7..7e5fd4a8e954e9f781b026b50d94db0e13324db1 100644 (file)
@@ -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();