image_ihex_t -> struct image_ihex

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

View File

@@ -72,11 +72,11 @@ struct image_binary
struct fileio fileio;
};
typedef struct image_ihex_s
struct image_ihex
{
struct fileio fileio;
uint8_t *buffer;
} image_ihex_t;
};
typedef struct image_memory_s
{