image_elf_t -> struct image_elf

Remove misleading typedef and redundant suffix from struct image_elf.
This commit is contained in:
Zachary T Welch
2009-11-13 09:25:36 -08:00
parent 2ec440588f
commit d90063ffc5
2 changed files with 7 additions and 7 deletions

View File

@@ -85,14 +85,14 @@ struct image_memory
uint32_t cache_address;
};
typedef struct fileio_elf_s
struct image_elf
{
struct fileio fileio;
Elf32_Ehdr *header;
Elf32_Phdr *segments;
uint32_t segment_count;
uint8_t endianness;
} image_elf_t;
};
struct image_mot
{