commit 864f86d559e601e54004c8c92d05fb977f260550
parent 6037d057b7ef88cee1bd5469a7a41884c34435d9
Author: Evgeny Grin (Karlson2k) <k2k@drgrin.dev>
Date: Sat, 14 Jun 2025 13:29:43 +0200
mhd_sys_options: fixed formatting
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/incl_priv/mhd_sys_options.h b/src/incl_priv/mhd_sys_options.h
@@ -228,7 +228,7 @@
#endif
#ifdef HAVE_ATTR_FUNC_ASSUME_ALIGNED
-# define mhd_FN_RET_ALIGNED(align) __attribute__((assume_aligned(align)))
+# define mhd_FN_RET_ALIGNED(align) __attribute__((assume_aligned (align)))
#else
# define mhd_FN_RET_ALIGNED(align) /* empty */
#endif
@@ -238,7 +238,7 @@
* Indicates that returned pointer points to object with the size specified
* by parameter number @a param_num.
*/
-# define mhd_FN_RET_SIZED(param_num) __attribute__((alloc_size(param_num)))
+# define mhd_FN_RET_SIZED(param_num) __attribute__((alloc_size (param_num)))
#else
/**
* Indicates that returned pointer points to object with the size specified
@@ -267,7 +267,7 @@
* another function @a destructor.
*/
# define mhd_FN_OBJ_CONSTRUCTOR(destructor) \
- __attribute__((malloc(destructor)))
+ __attribute__((malloc (destructor)))
#else
/**
* Indicates that function creates the object that mast be destructed by