aboutsummaryrefslogtreecommitdiffstats
path: root/main/timing.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2009-03-25 02:04:08 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2009-03-25 02:04:08 +0000
commitf2b2d2ebef84efe2dcb243368d626d55d642da9a (patch)
treedeaaa7e458e09600744daae39ec41dfdfc631e53 /main/timing.c
parent95ea0bf396af9d06ad9a9c1973391822cca12fca (diff)
Merged revisions 184151 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ........ r184151 | russell | 2009-03-24 21:03:13 -0500 (Tue, 24 Mar 2009) | 2 lines Change poll() to ast_poll(). ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.2@184152 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/timing.c')
-rw-r--r--main/timing.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/timing.c b/main/timing.c
index fbc2f21d8..0a58859b9 100644
--- a/main/timing.c
+++ b/main/timing.c
@@ -290,7 +290,7 @@ static char *timing_test(struct ast_cli_entry *e, int cmd, struct ast_cli_args *
.events = POLLIN | POLLPRI,
};
- res = poll(&pfd, 1, 100);
+ res = ast_poll(&pfd, 1, 100);
if (res == 1) {
count++;