https://origsvn.digium.com/svn/asterisk/branches/1.8
................
r286558 | tilghman | 2010-09-13 18:50:34 -0500 (Mon, 13 Sep 2010) | 9 lines
Merged revisions 286557 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.6.2
........
r286557 | tilghman | 2010-09-13 18:48:51 -0500 (Mon, 13 Sep 2010) | 2 lines
C precedence got me
........
................
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@286559
65c4cc65-6c06-0410-ace0-
fbb531ad65f3
continue;
}
*new_pfds = tmp;
- new_pfds[*new_nfds]->fd = chan->fds[x];
- new_pfds[*new_nfds]->events = POLLIN | POLLERR;
- new_pfds[*new_nfds]->revents = 0;
+ (*new_pfds)[*new_nfds].fd = chan->fds[x];
+ (*new_pfds)[*new_nfds].events = POLLIN | POLLERR;
+ (*new_pfds)[*new_nfds].revents = 0;
(*new_nfds)++;
}
}