Archived
14
0
Fork 0

Change poll() to ast_poll().

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@184151 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
russell 2009-03-25 02:03:13 +00:00
parent 4d91abde1f
commit db54da02eb

View file

@ -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++;