mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-03 04:16:43 +00:00
Apparently, a void cast doesn't override warn_unused_result.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@178381 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -3302,7 +3302,10 @@ int main(int argc, char *argv[])
|
||||
int cpipe[2];
|
||||
|
||||
/* PIPE signal ensures that astcanary dies when Asterisk dies */
|
||||
(void) pipe(cpipe);
|
||||
if (pipe(cpipe)) {
|
||||
fprintf(stderr, "Unable to open pipe for canary process: %s\n", strerror(errno));
|
||||
exit(1);
|
||||
}
|
||||
canary_pipe = cpipe[0];
|
||||
|
||||
snprintf(canary_filename, sizeof(canary_filename), "%s/alt.asterisk.canary.tweet.tweet.tweet", ast_config_AST_RUN_DIR);
|
||||
|
||||
Reference in New Issue
Block a user