Fri Jun 26 01:50:56 CDT 2009 kai.k.samposalo@nokia.com

* Symbian build fix


git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@14190 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris
2009-07-10 00:51:27 +00:00
parent ebbbc6da8c
commit 340bdda571
5 changed files with 20 additions and 8 deletions

View File

@@ -421,19 +421,20 @@ gboolean su_source_check(GSource *gs)
SuSource *ss = (SuSource *)gs;
su_port_t *self = ss->ss_port;
gint tout;
unsigned i, I;
unsigned I;
enter;
I = self->sup_n_waits;
#if SU_HAVE_POLL
unsigned i;
for (i = 0; i < I; i++) {
if (self->sup_waits[i].revents)
return TRUE;
}
#endif
(void)I;
return su_source_prepare(gs, &tout);
}