lwip: Fix print format -Wformat issues

This commit is contained in:
David Cermak
2023-04-05 16:45:45 +02:00
parent 5a81e00633
commit c510560890
6 changed files with 18 additions and 20 deletions

View File

@@ -48,9 +48,9 @@ typedef int sys_prot_t;
#define U16_F "d"
#define X16_F "x"
#define S32_F "d"
#define U32_F "u"
#define X32_F "x"
#define S32_F PRId32
#define U32_F PRIu32
#define X32_F PRIx32
#define PACK_STRUCT_FIELD(x) x
#define PACK_STRUCT_STRUCT __attribute__((packed))