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.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/target/image.h b/src/target/image.h
index a1e24c44..746f3d24 100644
--- a/src/target/image.h
+++ b/src/target/image.h
@@ -47,20 +47,20 @@ typedef enum image_type
IMAGE_BUILDER, /* when building a new image */
} image_type_t;
-typedef struct image_section_s
+struct image_section
{
uint32_t base_address;
uint32_t size;
int flags;
void *private; /* private data */
-} image_section_t;
+};
typedef struct image_s
{
image_type_t type; /* image type (plain, ihex, ...) */
void *type_private; /* type private data */
int num_sections; /* number of sections contained in the image */
- image_section_t *sections; /* array of sections */
+ struct image_section *sections; /* array of sections */
int base_address_set; /* whether the image has a base address set (for relocation purposes) */
int base_address; /* base address, if one is set */
int start_address_set; /* whether the image has a start address (entry point) associated */