aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--main/asterisk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/asterisk.c b/main/asterisk.c
index b69f046e4..a33c9a18a 100644
--- a/main/asterisk.c
+++ b/main/asterisk.c
@@ -3117,7 +3117,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);