aboutsummaryrefslogtreecommitdiffstats
path: root/src/pipeutils.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/pipeutils.c')
-rw-r--r--src/pipeutils.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pipeutils.c b/src/pipeutils.c
index 9ca19b2..163da5e 100644
--- a/src/pipeutils.c
+++ b/src/pipeutils.c
@@ -49,11 +49,11 @@ pipeutils_create_nonblocking(int pipefds[2])
for (i = 0; i < 2; i++) {
flags = fcntl(pipefds[0], F_GETFL);
if (flags == -1) {
- perror("fcntl <pipe> F_GETFL:");
+ weprintf("fcntl <pipe> F_GETFL:");
goto fail;
}
if (fcntl(pipefds[0], F_SETFL, flags | O_NONBLOCK)) {
- perror("fcntl <pipe> F_SETFL +O_NONBLOCK:");
+ weprintf("fcntl <pipe> F_SETFL +O_NONBLOCK:");
goto fail;
}
}