From 2f3e7a82b50d3f20bb44e52c675327861428ddd4 Mon Sep 17 00:00:00 2001 From: "Markus F.X.J. Oberhumer" Date: Wed, 15 Jan 2003 12:09:15 +0000 Subject: [PATCH] Detabified. committer: mfx 1042632555 +0000 --- src/p_elf.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/p_elf.h b/src/p_elf.h index c2636a15..8306285a 100644 --- a/src/p_elf.h +++ b/src/p_elf.h @@ -113,16 +113,16 @@ struct Elf_LE32_Shdr SHT_FINI_ARRAY = 15, /* Array of destructors */ SHT_PREINIT_ARRAY = 16, /* Array of pre-constructors */ SHT_GROUP = 17, /* Section group */ - SHT_SYMTAB_SHNDX = 18, /* Extended section indeces */ + SHT_SYMTAB_SHNDX = 18, /* Extended section indeces */ SHT_NUM = 19 /* Number of defined types. */ }; enum { // values for sh_flags SHF_WRITE = (1 << 0), /* Writable */ - SHF_ALLOC = (1 << 1), /* Occupies memory during execution */ + SHF_ALLOC = (1 << 1), /* Occupies memory during execution */ SHF_EXECINSTR = (1 << 2), /* Executable */ - SHF_MERGE = (1 << 4), /* Might be merged */ - SHF_STRINGS = (1 << 5), /* Contains nul-terminated strings */ + SHF_MERGE = (1 << 4), /* Might be merged */ + SHF_STRINGS = (1 << 5), /* Contains nul-terminated strings */ SHF_INFO_LINK = (1 << 6), /* `sh_info' contains SHT index */ SHF_LINK_ORDER = (1 << 7), /* Preserve order after combining */ };