From d78c8f2ddb2aed3aa265cd1057fb8aa2aa4e6624 Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Thu, 21 Sep 2023 06:37:15 +0100 Subject: [PATCH] Cleanup macros.h Signed-off-by: Mathieu Desnoyers --- include/side/macros.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/side/macros.h b/include/side/macros.h index aea7b9c..7c5c9c2 100644 --- a/include/side/macros.h +++ b/include/side/macros.h @@ -72,11 +72,11 @@ sizeof(((_struct * )NULL)->_field) #if defined(__SIZEOF_LONG__) -#define SIDE_BITS_PER_LONG (__SIZEOF_LONG__ * 8) +# define SIDE_BITS_PER_LONG (__SIZEOF_LONG__ * 8) #elif defined(_LP64) -#define SIDE_BITS_PER_LONG 64 +# define SIDE_BITS_PER_LONG 64 #else -#define SIDE_BITS_PER_LONG 32 +# define SIDE_BITS_PER_LONG 32 #endif #define SIDE_PACKED __attribute__((packed)) -- 2.34.1