From f54c40bdb3cc2ceb1c158aac075bcca5278de3e0 Mon Sep 17 00:00:00 2001 From: Charles Date: Sat, 13 Jun 2020 01:35:53 +0200 Subject: [PATCH] Re ordered struct to be more aligned --- src/LibTeleinfo.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/LibTeleinfo.h b/src/LibTeleinfo.h index 8eade6a..0eb7deb 100644 --- a/src/LibTeleinfo.h +++ b/src/LibTeleinfo.h @@ -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)