Blame SOURCES/file-5.11-compress.patch

a2822c
diff --git a/src/compress.c b/src/compress.c
a2822c
index 2b05352..ccb1cfd 100644
a2822c
--- a/src/compress.c
a2822c
+++ b/src/compress.c
a2822c
@@ -183,7 +183,7 @@ sread(int fd, void *buf, size_t n, int canbepipe __attribute__ ((unused)))
a2822c
 		goto nocheck;
a2822c
 
a2822c
 #ifdef FIONREAD
a2822c
-	if ((canbepipe && (ioctl(fd, FIONREAD, &t) == -1)) || (t == 0)) {
a2822c
+	if (canbepipe && ((ioctl(fd, FIONREAD, &t) == -1) || (t == 0))) {
a2822c
 #ifdef FD_ZERO
a2822c
 		for (cnt = 0;; cnt++) {
a2822c
 			fd_set check;