summaryrefslogtreecommitdiff
path: root/memdump
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2009-05-29 15:10:36 -0700
committerH. Peter Anvin <hpa@zytor.com>2009-05-29 15:10:36 -0700
commit3019d35346509542bc7be1e5557c1c98f47946e9 (patch)
treedce3c5544f058ee4418ebd0d2db51d69b1c3e9af /memdump
parent3761a8a5592f20dfad5f64879d80960c2541e0c8 (diff)
downloadsyslinux-3019d35346509542bc7be1e5557c1c98f47946e9.tar.gz
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 <hpa@zytor.com>
Diffstat (limited to 'memdump')
-rw-r--r--memdump/malloc.h10
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;