[asterisk-commits] russell: branch russell/events r83975 - /team/russell/events/pbx/pbx_dundi.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Sep 26 18:58:55 CDT 2007
Author: russell
Date: Wed Sep 26 18:58:55 2007
New Revision: 83975
URL: http://svn.digium.com/view/asterisk?view=rev&rev=83975
Log:
make this compile
Modified:
team/russell/events/pbx/pbx_dundi.c
Modified: team/russell/events/pbx/pbx_dundi.c
URL: http://svn.digium.com/view/asterisk/team/russell/events/pbx/pbx_dundi.c?view=diff&rev=83975&r1=83974&r2=83975
==============================================================================
--- team/russell/events/pbx/pbx_dundi.c (original)
+++ team/russell/events/pbx/pbx_dundi.c Wed Sep 26 18:58:55 2007
@@ -283,7 +283,7 @@
#define EVENT_MAP_BUCKETS 17
/*! Publish event mappings */
-static ao2_container *pub_event_maps;
+static struct ao2_container *pub_event_maps;
/*!
* \brief Wildcard peer
@@ -4615,7 +4615,7 @@
static void prune_event_mappings(void)
{
struct pub_event_map *pub_event_map;
- ao2_iterator i;
+ struct ao2_iterator i;
/* XXX Would this be better done with an ao2_callback loop with OBJ_UNLINK ? */
@@ -4811,7 +4811,7 @@
static void empty_pub_event_maps(void)
{
struct pub_event_map *pub_event_map;
- ao2_iterator i;
+ struct ao2_iterator i;
i = ao2_iterator_init(pub_event_maps, 0);
while ((pub_event_map = ao2_iterator_next(&i))) {
More information about the asterisk-commits
mailing list