From bdcdd551631a0c21d9db10f44aa6c25ee0336d17 Mon Sep 17 00:00:00 2001 From: Marion Guthmuller Date: Tue, 19 Jun 2012 15:14:44 +0200 Subject: [PATCH 1/1] model-checker : cosmetics reindent --- src/xbt/mmalloc/mrealloc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/xbt/mmalloc/mrealloc.c b/src/xbt/mmalloc/mrealloc.c index 82a3f342a2..b8223a4503 100644 --- a/src/xbt/mmalloc/mrealloc.c +++ b/src/xbt/mmalloc/mrealloc.c @@ -79,11 +79,11 @@ void *mrealloc(xbt_mheap_t mdp, void *ptr, size_t size) /* Full blocks -> Full blocks; see if we can hold it in place. */ blocks = BLOCKIFY(size); if (blocks < mdp->heapinfo[block].busy_block.size) { - int it; + int it; /* The new size is smaller; return excess memory to the free list. */ //printf("(%s) return excess memory...",xbt_thread_self_name()); - for (it= block+blocks; it< mdp->heapinfo[block].busy_block.size ; it++) - mdp->heapinfo[it].type = 0; // FIXME that should be useless, type should already be 0 here + for (it= block+blocks; it< mdp->heapinfo[block].busy_block.size ; it++) + mdp->heapinfo[it].type = 0; // FIXME that should be useless, type should already be 0 here mdp->heapinfo[block + blocks].busy_block.size = mdp->heapinfo[block].busy_block.size - blocks; -- 2.20.1