Skip to content
Snippets Groups Projects
Commit 3a6d247d authored by Russell Bryant's avatar Russell Bryant
Browse files

Fix build of utility apps that include utils.c.

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@237749 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 630152f8
No related branches found
No related tags found
No related merge requests found
......@@ -1071,7 +1071,9 @@ static int ast_wait_for_output(int fd, int timeoutms)
while ((res = ast_poll(&pfd, 1, timeoutms - elapsed)) <= 0) {
if (res == 0) {
/* timed out. */
#ifndef STANDALONE
ast_debug(1, "Timed out trying to write\n");
#endif
return -1;
} else if (res == -1) {
/* poll() returned an error, check to see if it was fatal */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment