image_mot_t -> struct image_mot

Remove misleading typedef and redundant suffix from struct image_mot.
This commit is contained in:
Zachary T Welch
2009-11-13 08:43:23 -08:00
parent b154972bdb
commit ef36a7fb3b
2 changed files with 6 additions and 6 deletions

View File

@@ -94,11 +94,11 @@ typedef struct fileio_elf_s
uint8_t endianness;
} image_elf_t;
typedef struct image_mot_s
struct image_mot
{
struct fileio fileio;
uint8_t *buffer;
} image_mot_t;
};
int image_open(image_t *image, const char *url, const char *type_string);
int image_read_section(image_t *image, int section, uint32_t offset,