diff options
Diffstat (limited to 'src/target/image.h')
-rw-r--r-- | src/target/image.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/target/image.h b/src/target/image.h index 608336bb..0180420c 100644 --- a/src/target/image.h +++ b/src/target/image.h @@ -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 { |