aboutsummaryrefslogtreecommitdiffstats
path: root/util/memory.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--util/memory.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/memory.c b/util/memory.c
index 683f042d6..54095df17 100644
--- a/util/memory.c
+++ b/util/memory.c
@@ -264,15 +264,15 @@ dump_entry(struct memtbl_entry *e )
}
static void
-dump_table(void)
+dump_table( void)
{
unsigned n;
struct memtbl_entry *e;
ulong sum = 0, chunks =0;
for( e = memtbl, n = 0; n < memtbl_len; n++, e++ ) {
- dump_entry(e);
if(e->inuse) {
+ dump_entry(e);
sum += e->user_n;
chunks++;
}