Blame SOURCES/file-5.11-compress.patch

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