From da0d2f5a3f2c4e7b31b69c46a564be7d04cb42b9 Mon Sep 17 00:00:00 2001 From: Tilghman Lesher Date: Tue, 24 Feb 2009 20:41:26 +0000 Subject: [PATCH] Merged revisions 178375 via svnmerge from https://origsvn.digium.com/svn/asterisk/trunk ........ r178375 | tilghman | 2009-02-24 14:40:02 -0600 (Tue, 24 Feb 2009) | 2 lines The 3 possible errors with pipe(2) are all impossible in this situation. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@178377 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- main/asterisk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/asterisk.c b/main/asterisk.c index 9b3cb8f964..847e75dbab 100644 --- a/main/asterisk.c +++ b/main/asterisk.c @@ -3143,7 +3143,7 @@ int main(int argc, char *argv[]) int cpipe[2]; /* PIPE signal ensures that astcanary dies when Asterisk dies */ - pipe(cpipe); + (void) pipe(cpipe); canary_pipe = cpipe[0]; snprintf(canary_filename, sizeof(canary_filename), "%s/alt.asterisk.canary.tweet.tweet.tweet", ast_config_AST_RUN_DIR); -- 2.47.2