summaryrefslogtreecommitdiff
path: root/src/target/image.h
diff options
context:
space:
mode:
authorØyvind Harboe <oyvind.harboe@zylin.com>2010-09-27 16:29:08 +0200
committerØyvind Harboe <oyvind.harboe@zylin.com>2010-09-27 16:29:51 +0200
commit19167a7af6053f1eba0420509408731db007368c (patch)
tree84f913ba4a864d18beefbd803264d40f513ba17c /src/target/image.h
parent3bb4a6ba14dba7441868dd28b6f56798523e8ad3 (diff)
downloadopenocd+libswd-19167a7af6053f1eba0420509408731db007368c.tar.gz
openocd+libswd-19167a7af6053f1eba0420509408731db007368c.tar.bz2
openocd+libswd-19167a7af6053f1eba0420509408731db007368c.tar.xz
openocd+libswd-19167a7af6053f1eba0420509408731db007368c.zip
image: fix spelling mistake
struct imageection => struct imagesection Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
Diffstat (limited to 'src/target/image.h')
-rw-r--r--src/target/image.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/target/image.h b/src/target/image.h
index b096031b..27f31869 100644
--- a/src/target/image.h
+++ b/src/target/image.h
@@ -47,7 +47,7 @@ enum image_type
IMAGE_BUILDER, /* when building a new image */
};
-struct imageection
+struct imagesection
{
uint32_t base_address;
uint32_t size;
@@ -60,7 +60,7 @@ struct image
enum image_type type; /* image type (plain, ihex, ...) */
void *type_private; /* type private data */
int num_sections; /* number of sections contained in the image */
- struct imageection *sections; /* array of sections */
+ struct imagesection *sections; /* array of sections */
int base_address_set; /* whether the image has a base address set (for relocation purposes) */
long long base_address; /* base address, if one is set */
int start_address_set; /* whether the image has a start address (entry point) associated */