X-Git-Url: https://review.openocd.org/gitweb?a=blobdiff_plain;f=src%2Ftarget%2Fimage.h;h=a1e24c44c4be081e2f12e8f8fc4cad0c70b6d925;hb=9f212b01be20da43ba534ad33b20419779c89335;hp=30240d5632c3a801b09c97e417e716353761ae49;hpb=f59ec2043b840a4534fdd61502de59e2571988d5;p=openocd.git diff --git a/src/target/image.h b/src/target/image.h index 30240d5632..a1e24c44c4 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;