image_binary_t -> struct image_binary

Remove misleading typedef and redundant suffix from struct image_binary.
This commit is contained in:
Zachary T Welch
2009-11-13 08:43:02 -08:00
parent 24df46d067
commit a87faf5b66
2 changed files with 6 additions and 6 deletions

View File

@@ -67,10 +67,10 @@ typedef struct image_s
uint32_t start_address; /* start address, if one is set */
} image_t;
typedef struct image_binary_s
struct image_binary
{
struct fileio fileio;
} image_binary_t;
};
typedef struct image_ihex_s
{