Blame SOURCES/file-5.11-compress.patch

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