summaryrefslogtreecommitdiff
path: root/pjlib/include/pj/list.h
diff options
context:
space:
mode:
Diffstat (limited to 'pjlib/include/pj/list.h')
-rw-r--r--pjlib/include/pj/list.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/pjlib/include/pj/list.h b/pjlib/include/pj/list.h
index 95ae99fd..f6662eb6 100644
--- a/pjlib/include/pj/list.h
+++ b/pjlib/include/pj/list.h
@@ -45,8 +45,11 @@ PJ_BEGIN_DECL
* declares additional member @a prev and @a next to the structure.
* @hideinitializer
*/
-#define PJ_DECL_LIST_MEMBER(type) type *prev; /** List @a prev. */ \
- type *next /** List @a next. */
+#define PJ_DECL_LIST_MEMBER(type) \
+ /** List @a prev. */ \
+ type *prev; \
+ /** List @a next. */ \
+ type *next
/**