From 4c3cd7fde636946bb806d9b2d025c59418fa4e85 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Thu, 6 Mar 2025 16:57:49 +0100 Subject: style and some minor fixes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- src/pipeutils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/pipeutils.c') 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 F_GETFL:"); + weprintf("fcntl F_GETFL:"); goto fail; } if (fcntl(pipefds[0], F_SETFL, flags | O_NONBLOCK)) { - perror("fcntl F_SETFL +O_NONBLOCK:"); + weprintf("fcntl F_SETFL +O_NONBLOCK:"); goto fail; } } -- cgit v1.2.3-70-g09d2