[Asterisk-cvs] asterisk/apps app_externalivr.c,1.13,1.14

russell russell
Sun Nov 6 09:39:38 CST 2005


Update of /usr/cvsroot/asterisk/apps
In directory mongoose.digium.com:/tmp/cvs-serv2600/apps

Modified Files:
	app_externalivr.c 
Log Message:
issue #5622


Index: app_externalivr.c
===================================================================
RCS file: /usr/cvsroot/asterisk/apps/app_externalivr.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- app_externalivr.c	26 Oct 2005 19:48:14 -0000	1.13
+++ app_externalivr.c	6 Nov 2005 14:30:53 -0000	1.14
@@ -59,7 +59,8 @@
 "when the channel is hung up.\n"
 "See doc/README.externalivr for a protocol specification.\n";
 
-#define ast_chan_log(level, channel, format, ...) ast_log(level, "%s: " format, channel->name, ## __VA_ARGS__)
+/* XXX the parser in gcc 2.95 gets confused if you don't put a space between 'name' and the comma */
+#define ast_chan_log(level, channel, format, ...) ast_log(level, "%s: " format, channel->name , ## __VA_ARGS__)
 
 struct playlist_entry {
 	AST_LIST_ENTRY(playlist_entry) list;




More information about the svn-commits mailing list