From 7c7300624eb867fa7c1ea52b9c636889aac60e80 Mon Sep 17 00:00:00 2001 From: Benny Prijono Date: Sun, 6 Nov 2005 09:37:47 +0000 Subject: 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 --- pjlib/include/pj/list.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pjlib/include/pj/list.h') 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); }; -- cgit v1.2.3