Run Nindent on com32/lib/malloc.h
authorH. Peter Anvin <hpa@zytor.com>
Fri, 29 May 2009 22:10:23 +0000 (15:10 -0700)
committerH. Peter Anvin <hpa@zytor.com>
Fri, 29 May 2009 22:10:23 +0000 (15:10 -0700)
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 <hpa@zytor.com>
com32/lib/malloc.h

index e70b8c9..bf75432 100644 (file)
@@ -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;