]> git.ipfire.org Git - thirdparty/rspamd.git/commitdiff
fix preprocessor syntax 2635/head
authorPhilippe Kueck <bqobccy6ejnq2bqvmebqiwqha4cs4@protected32.unixadm.org>
Mon, 19 Nov 2018 16:03:34 +0000 (17:03 +0100)
committerPhilippe Kueck <bqobccy6ejnq2bqvmebqiwqha4cs4@protected32.unixadm.org>
Mon, 19 Nov 2018 16:03:34 +0000 (17:03 +0100)
src/libutil/mem_pool.h

index 9b6f690c7c2a06e9e968ac5c58cfdc630d96990e..33ada31dc905b7d2a8acaf33f83692e98d93b44f 100644 (file)
@@ -25,18 +25,18 @@ struct f_str_s;
 #  if __has_attribute(alloc_size)
 #    define RSPAMD_ATTR_ALLOC_SIZE(pos) __attribute__((alloc_size(pos)))
 #  else
-#    #define RSPAMD_ATTR_ALLOC_SIZE(pos)
+#    define RSPAMD_ATTR_ALLOC_SIZE(pos)
 #  endif
 
 #  if __has_attribute(assume_aligned)
 #    define RSPAMD_ATTR_ALLOC_ALIGN(al) __attribute__((assume_aligned(al)))
 #  else
-#    #define RSPAMD_ATTR_ALLOC_ALIGN(al)
+#    define RSPAMD_ATTR_ALLOC_ALIGN(al)
 #  endif
 #  if __has_attribute(returns_nonnull)
 #    define RSPAMD_ATTR_RETURNS_NONNUL __attribute__((returns_nonnull))
 #  else
-#    #define RSPAMD_ATTR_RETURNS_NONNUL
+#    define RSPAMD_ATTR_RETURNS_NONNUL
 #  endif
 #else
 #define RSPAMD_ATTR_ALLOC_SIZE(pos)