summaryrefslogtreecommitdiff
path: root/pjlib/include/pj/list.h
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2005-11-06 09:37:47 +0000
committerBenny Prijono <bennylp@teluu.com>2005-11-06 09:37:47 +0000
commit7c7300624eb867fa7c1ea52b9c636889aac60e80 (patch)
tree58460baa296e7eb6bd775d060f2a1e960717f565 /pjlib/include/pj/list.h
parent58aee2809c36f43a3b66dac7d9db5d13070114b9 (diff)
Changed ioqueue to allow simultaneous operations on the same key
git-svn-id: http://svn.pjsip.org/repos/pjproject/main@11 74dad513-b988-da41-8d7b-12977e46ad98
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);
};