From e093281a8b51a3d89e61c99b7ac28c7bae47fbfa Mon Sep 17 00:00:00 2001 From: Dave Rodgman Date: Tue, 6 Feb 2024 15:00:58 +0000 Subject: [PATCH] Pacify check-names Signed-off-by: Dave Rodgman --- library/alignment.h | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/library/alignment.h b/library/alignment.h index fece47dc87..a17001dd91 100644 --- a/library/alignment.h +++ b/library/alignment.h @@ -83,9 +83,15 @@ typedef uint64_t __packed mbedtls_uint64_unaligned_t; * We don't enable for older than 4.5.0 as this has not been tested. */ #define UINT_UNALIGNED_STRUCT -typedef struct { uint16_t x; } __attribute__((packed)) mbedtls_uint16_unaligned_t; -typedef struct { uint32_t x; } __attribute__((packed)) mbedtls_uint32_unaligned_t; -typedef struct { uint64_t x; } __attribute__((packed)) mbedtls_uint64_unaligned_t; +typedef struct { + uint16_t x; +} __attribute__((packed)) mbedtls_uint16_unaligned_t; +typedef struct { + uint32_t x; +} __attribute__((packed)) mbedtls_uint32_unaligned_t; +typedef struct { + uint64_t x; +} __attribute__((packed)) mbedtls_uint64_unaligned_t; #endif /*