diff options
Diffstat (limited to 'memdump')
-rw-r--r-- | memdump/malloc.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/memdump/malloc.h b/memdump/malloc.h index 70d0e635..67bf217c 100644 --- a/memdump/malloc.h +++ b/memdump/malloc.h @@ -21,9 +21,9 @@ struct free_arena_header; struct arena_header { - size_t type; - size_t size; /* Also gives the location of the next entry */ - struct free_arena_header *next, *prev; + size_t type; + size_t size; /* Also gives the location of the next entry */ + struct free_arena_header *next, *prev; }; #ifdef DEBUG_MALLOC @@ -47,8 +47,8 @@ struct arena_header { * previous structure. */ struct free_arena_header { - struct arena_header a; - struct free_arena_header *next_free, *prev_free; + struct arena_header a; + struct free_arena_header *next_free, *prev_free; }; extern struct free_arena_header __malloc_head; |