diff options
| author | H. Peter Anvin <hpa@zytor.com> | 2009-05-29 15:10:32 -0700 |
|---|---|---|
| committer | H. Peter Anvin <hpa@zytor.com> | 2009-05-29 15:10:32 -0700 |
| commit | cf32bf7e4e926d10c536e146ca48c3112309f1ec (patch) | |
| tree | b6840349db8b52fb90db02ce87b5a9543bf7f879 /dos | |
| parent | 678dd12d00cdba3d9a6d28c1bc92c68839f8743a (diff) | |
| download | syslinux-cf32bf7e4e926d10c536e146ca48c3112309f1ec.tar.gz | |
Run Nindent on dos/malloc.h
Automatically reformat dos/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>
Diffstat (limited to 'dos')
| -rw-r--r-- | dos/malloc.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/dos/malloc.h b/dos/malloc.h index 70d0e635..67bf217c 100644 --- a/dos/malloc.h +++ b/dos/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; |
