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.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/pjlib/include/pj/list.h b/pjlib/include/pj/list.h
index 32bd5aec..95ae99fd 100644
--- a/pjlib/include/pj/list.h
+++ b/pjlib/include/pj/list.h
@@ -46,7 +46,7 @@ PJ_BEGIN_DECL
* @hideinitializer
*/
#define PJ_DECL_LIST_MEMBER(type) type *prev; /** List @a prev. */ \
- type *next; /** List @a next. */
+ type *next /** List @a next. */
/**
@@ -56,7 +56,7 @@ PJ_BEGIN_DECL
*/
struct pj_list
{
- PJ_DECL_LIST_MEMBER(void)
+ PJ_DECL_LIST_MEMBER(void);
};