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/branches/1.8@286558 65c4cc65-6c06-0410-ace0-fbb531ad65f3
certified/1.8.6
Tilghman Lesher 15 years ago
parent 9cbcaec026
commit 371e0c6d70

@ -3785,9 +3785,9 @@ std: for (x = 0; x < AST_MAX_FDS; x++) { /* mark fds for next round */
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)++;
}
}

Loading…
Cancel
Save