[asterisk-commits] tilghman: branch 1.8 r286558 - in /branches/1.8: ./ main/features.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Sep 13 18:50:38 CDT 2010
Author: tilghman
Date: Mon Sep 13 18:50:34 2010
New Revision: 286558
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=286558
Log:
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
........
Modified:
branches/1.8/ (props changed)
branches/1.8/main/features.c
Propchange: branches/1.8/
------------------------------------------------------------------------------
Binary property 'branch-1.6.2-merged' - no diff available.
Modified: branches/1.8/main/features.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/main/features.c?view=diff&rev=286558&r1=286557&r2=286558
==============================================================================
--- branches/1.8/main/features.c (original)
+++ branches/1.8/main/features.c Mon Sep 13 18:50:34 2010
@@ -3785,9 +3785,9 @@
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)++;
}
}
More information about the asterisk-commits
mailing list