Change poll() to ast_poll().

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@184151 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant
2009-03-25 02:03:13 +00:00
parent 08f561f196
commit f9f0d8fe96

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