From: Russell Bryant Date: Wed, 25 Mar 2009 02:03:13 +0000 (+0000) Subject: Change poll() to ast_poll(). X-Git-Tag: 11.0.0-beta1~5184 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f9f0d8fe962a8feacc34085cf98c0568b3d6393c;p=thirdparty%2Fasterisk.git Change poll() to ast_poll(). git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@184151 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/timing.c b/main/timing.c index fbc2f21d8b..0a58859b9f 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++;