summaryrefslogtreecommitdiff
path: root/src/target/image.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/target/image.h')
-rw-r--r--src/target/image.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/target/image.h b/src/target/image.h
index 30240d56..a1e24c44 100644
--- a/src/target/image.h
+++ b/src/target/image.h
@@ -69,12 +69,12 @@ typedef struct image_s
typedef struct image_binary_s
{
- fileio_t fileio;
+ struct fileio fileio;
} image_binary_t;
typedef struct image_ihex_s
{
- fileio_t fileio;
+ struct fileio fileio;
uint8_t *buffer;
} image_ihex_t;
@@ -87,7 +87,7 @@ typedef struct image_memory_s
typedef struct fileio_elf_s
{
- fileio_t fileio;
+ struct fileio fileio;
Elf32_Ehdr *header;
Elf32_Phdr *segments;
uint32_t segment_count;
@@ -96,7 +96,7 @@ typedef struct fileio_elf_s
typedef struct image_mot_s
{
- fileio_t fileio;
+ struct fileio fileio;
uint8_t *buffer;
} image_mot_t;