[Asterisk-cvs] asterisk/include/asterisk astobj.h,1.3,1.4
markster at lists.digium.com
markster at lists.digium.com
Wed Dec 29 18:17:05 CST 2004
- Previous message: [Asterisk-cvs] asterisk/channels chan_iax2.c, 1.229,
1.230 iax2-parser.c, 1.32, 1.33 iax2-parser.h, 1.12,
1.13 iax2.h, 1.18, 1.19
- Next message: [Asterisk-cvs]
asterisk/apps Makefile, 1.87, 1.88 app_qcall.c, 1.14, NONE
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /usr/cvsroot/asterisk/include/asterisk
In directory mongoose.digium.com:/tmp/cvs-serv22142/include/asterisk
Modified Files:
astobj.h
Log Message:
Make casts work again properly (bug #3155)
Index: astobj.h
===================================================================
RCS file: /usr/cvsroot/asterisk/include/asterisk/astobj.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- astobj.h 29 Dec 2004 07:50:15 -0000 1.3
+++ astobj.h 29 Dec 2004 23:11:51 -0000 1.4
@@ -60,12 +60,12 @@
ASTOBJ_COMPONENTS_NOLOCK_FULL(type,ASTOBJ_DEFAULT_NAMELEN,1)
#define ASTOBJ_COMPONENTS(type) \
- ast_mutex_t _lock; \
- ASTOBJ_COMPONENTS_NOLOCK(type)
+ ASTOBJ_COMPONENTS_NOLOCK(type); \
+ ast_mutex_t _lock;
#define ASTOBJ_COMPONENTS_FULL(type,namelen,hashes) \
- ast_mutex_t _lock; \
- ASTOBJ_COMPONENTS_NOLOCK_FULL(type,namelen,hashes)
+ ASTOBJ_COMPONENTS_NOLOCK_FULL(type,namelen,hashes); \
+ ast_mutex_t _lock;
#define ASTOBJ_REF(object) \
({ \
- Previous message: [Asterisk-cvs] asterisk/channels chan_iax2.c, 1.229,
1.230 iax2-parser.c, 1.32, 1.33 iax2-parser.h, 1.12,
1.13 iax2.h, 1.18, 1.19
- Next message: [Asterisk-cvs]
asterisk/apps Makefile, 1.87, 1.88 app_qcall.c, 1.14, NONE
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the svn-commits
mailing list