Re ordered struct to be more aligned
This commit is contained in:
parent
f85ec633a0
commit
f54c40bdb3
|
@ -80,10 +80,10 @@ typedef struct _ValueList ValueList;
|
||||||
struct _ValueList
|
struct _ValueList
|
||||||
{
|
{
|
||||||
ValueList *next; // next element
|
ValueList *next; // next element
|
||||||
uint8_t checksum;// checksum
|
|
||||||
uint8_t flags; // specific flags
|
|
||||||
char * name; // LABEL of value name
|
char * name; // LABEL of value name
|
||||||
char * value; // value
|
char * value; // value
|
||||||
|
uint8_t checksum;// checksum
|
||||||
|
uint8_t flags; // specific flags
|
||||||
};
|
};
|
||||||
|
|
||||||
#pragma pack(pop)
|
#pragma pack(pop)
|
||||||
|
|
Loading…
Reference in New Issue