From: Timo Sirainen Date: Mon, 4 Oct 2021 11:35:03 +0000 (+0300) Subject: lib: macros.h - Fix #endif position X-Git-Tag: 2.3.18~262 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5de8349891a208f21beca2c2ae99ab28a84a1651;p=thirdparty%2Fdovecot%2Fcore.git lib: macros.h - Fix #endif position --- diff --git a/src/lib/macros.h b/src/lib/macros.h index 930158281e..18b32aada9 100644 --- a/src/lib/macros.h +++ b/src/lib/macros.h @@ -239,8 +239,6 @@ static inline const char *container_of_ptr(const void *ptr, size_t offset) __func__, \ #expr); }STMT_END -#endif - #define i_unreached() \ i_panic("file %s: line %d: unreached", __FILE__, __LINE__) @@ -313,3 +311,5 @@ static inline const char *container_of_ptr(const void *ptr, size_t offset) sizeof check. */ # define ENUM_NEGATE(x) ((unsigned int)(~(x))) #endif + +#endif