[asterisk-commits] russell: branch russell/ais r78364 - /team/russell/ais/res/res_ais.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Aug 7 12:21:53 CDT 2007
Author: russell
Date: Tue Aug 7 12:21:53 2007
New Revision: 78364
URL: http://svn.digium.com/view/asterisk?view=rev&rev=78364
Log:
cast away a compiler warning
Modified:
team/russell/ais/res/res_ais.c
Modified: team/russell/ais/res/res_ais.c
URL: http://svn.digium.com/view/asterisk/team/russell/ais/res/res_ais.c?view=diff&rev=78364&r1=78363&r2=78364
==============================================================================
--- team/russell/ais/res/res_ais.c (original)
+++ team/russell/ais/res/res_ais.c Tue Aug 7 12:21:53 2007
@@ -214,7 +214,7 @@
* If this module gets changed such that this is no longer the case, this
* should get changed to a thread-local buffer, instead. */
static unsigned char buf[4096];
- struct ast_event *event_dup, *event = (struct ast_event *) buf;
+ struct ast_event *event_dup, *event = (void *) buf;
SaAisErrorT res;
SaSizeT len = sizeof(buf);
More information about the asterisk-commits
mailing list