[asterisk-commits] russell: trunk r184151 - /trunk/main/timing.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Mar 24 21:03:16 CDT 2009
Author: russell
Date: Tue Mar 24 21:03:13 2009
New Revision: 184151
URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=184151
Log:
Change poll() to ast_poll().
Modified:
trunk/main/timing.c
Modified: trunk/main/timing.c
URL: http://svn.digium.com/svn-view/asterisk/trunk/main/timing.c?view=diff&rev=184151&r1=184150&r2=184151
==============================================================================
--- trunk/main/timing.c (original)
+++ trunk/main/timing.c Tue Mar 24 21:03:13 2009
@@ -290,7 +290,7 @@
.events = POLLIN | POLLPRI,
};
- res = poll(&pfd, 1, 100);
+ res = ast_poll(&pfd, 1, 100);
if (res == 1) {
count++;
More information about the asterisk-commits
mailing list