From: H. Peter Anvin Date: Fri, 29 May 2009 22:10:23 +0000 (-0700) Subject: Run Nindent on com32/lib/malloc.h X-Git-Tag: syslinux-3.83-pre2~318 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ec69410c951317f3027e93fe0f05fbef025cc9d5;p=platform%2Fupstream%2Fsyslinux.git Run Nindent on com32/lib/malloc.h Automatically reformat com32/lib/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 --- diff --git a/com32/lib/malloc.h b/com32/lib/malloc.h index e70b8c9..bf75432 100644 --- a/com32/lib/malloc.h +++ b/com32/lib/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;