From 3019d35346509542bc7be1e5557c1c98f47946e9 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Fri, 29 May 2009 15:10:36 -0700 Subject: Run Nindent on memdump/malloc.h Automatically reformat memdump/malloc.h using Nindent. Do this for all files except HDT, gPXE and externally maintained libraries (zlib, tinyjpeg, libpng). Signed-off-by: H. Peter Anvin --- memdump/malloc.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'memdump') 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; -- cgit v1.2.1