aboutsummaryrefslogtreecommitdiffstats
path: root/main
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2010-09-13 23:50:34 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2010-09-13 23:50:34 +0000
commitac84a6ffce66ad6371122890d7ca008e36221367 (patch)
tree275a4f5becfe8bea7f788de9d71f0bc6b6c7d10c /main
parentd47390516a1698c40391f6c908b6d723ff360469 (diff)
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: http://svn.digium.com/svn/asterisk/branches/1.8@286558 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main')
-rw-r--r--main/features.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/main/features.c b/main/features.c
index 025e9cd67..2b38b7589 100644
--- a/main/features.c
+++ b/main/features.c
@@ -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)++;
}
}