From f9f0d8fe962a8feacc34085cf98c0568b3d6393c Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Wed, 25 Mar 2009 02:03:13 +0000 Subject: [PATCH] Change poll() to ast_poll(). git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@184151 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- main/timing.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/timing.c b/main/timing.c index fbc2f21..0a58859 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++; -- 1.7.9.5