From 4436e5a703006dc9b86e37d7f3d4b614cd61ff92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Fri, 13 Apr 2018 12:40:11 +0200 Subject: [PATCH] basic/copy: fix awkward sentence --- src/basic/copy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/basic/copy.c b/src/basic/copy.c index 55394871fdf..5b6cae39d05 100644 --- a/src/basic/copy.c +++ b/src/basic/copy.c @@ -69,7 +69,7 @@ static int fd_is_nonblock_pipe(int fd) { struct stat st; int flags; - /* Checks whether the specified file descriptor refers to a pipe, and if so if is has O_NONBLOCK set. */ + /* Checks whether the specified file descriptor refers to a pipe, and if so if O_NONBLOCK is set. */ if (fstat(fd, &st) < 0) return -errno;