[ipaccess] Use the u_intX_t types in the firmware tool

This commit is contained in:
Holger Hans Peter Freyther 2009-12-29 08:08:47 +01:00
parent 567b3261d9
commit c823c89c76
1 changed files with 3 additions and 3 deletions

View File

@ -35,11 +35,11 @@
struct sdp_firmware {
char magic[4];
char more_magic[4];
unsigned int header_length;
unsigned int file_length;
u_int32_t header_length;
u_int32_t file_length;
char sw_part[20];
char text1[122];
unsigned int short part_length;
u_int16_t part_length;
/* stuff i don't know */
} __attribute__((packed));