summaryrefslogtreecommitdiff
path: root/hurd/hurdmalloc.c
diff options
context:
space:
mode:
authorOndrej Bilka <neleai@seznam.cz>2013-06-06 19:36:03 +0200
committerOndrej Bilka <neleai@seznam.cz>2013-06-06 20:36:07 +0200
commit350635a59a000fa4561d0d8bbe6814b4b9df530c (patch)
treeab4ec502e1944f8290eba1102ac210a3806b92a3 /hurd/hurdmalloc.c
parent25506f09dda0d3d579d98971b3b12dd3e9e2fe8f (diff)
Fix leading whitespaces.
Diffstat (limited to 'hurd/hurdmalloc.c')
-rw-r--r--hurd/hurdmalloc.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/hurd/hurdmalloc.c b/hurd/hurdmalloc.c
index 12da1f2abc..8724261376 100644
--- a/hurd/hurdmalloc.c
+++ b/hurd/hurdmalloc.c
@@ -382,15 +382,15 @@ realloc(old_base, new_size)
void
print_malloc_free_list()
{
- register int i, size;
+ register int i, size;
register free_list_t fl;
register int n;
- register header_t h;
+ register header_t h;
int total_used = 0;
int total_free = 0;
fprintf(stderr, " Size In Use Free Total\n");
- for (i = 0, size = MIN_SIZE, fl = malloc_free_list;
+ for (i = 0, size = MIN_SIZE, fl = malloc_free_list;
i < NBUCKETS;
i += 1, size <<= 1, fl += 1) {
spin_lock(&fl->lock);
@@ -403,8 +403,8 @@ print_malloc_free_list()
size, fl->in_use, n, fl->in_use + n);
}
spin_unlock(&fl->lock);
- }
- fprintf(stderr, " all sizes %10d %10d %10d\n",
+ }
+ fprintf(stderr, " all sizes %10d %10d %10d\n",
total_used, total_free, total_used + total_free);
}
#endif /* DEBUG */