Re ordered struct to be more aligned

This commit is contained in:
Charles 2020-06-13 01:35:53 +02:00
parent f85ec633a0
commit f54c40bdb3
1 changed files with 2 additions and 2 deletions

View File

@ -80,10 +80,10 @@ typedef struct _ValueList ValueList;
struct _ValueList
{
ValueList *next; // next element
uint8_t checksum;// checksum
uint8_t flags; // specific flags
char * name; // LABEL of value name
char * value; // value
uint8_t checksum;// checksum
uint8_t flags; // specific flags
};
#pragma pack(pop)