mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-23 14:44:28 +00:00
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:
@@ -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++;
|
||||
|
Reference in New Issue
Block a user