diff --git a/nsprpub/pr/src/md/unix/unix.c b/nsprpub/pr/src/md/unix/unix.c index 8c3dca00a4bb..ffda1d9aff35 100644 --- a/nsprpub/pr/src/md/unix/unix.c +++ b/nsprpub/pr/src/md/unix/unix.c @@ -2983,7 +2983,7 @@ PRTransmitFileFlags flags, PRIntervalTime timeout) * to not consume too much virtual address space */ if ((sfd->file_offset == 0) || - (sfd->file_offset & (pagesize - 1) == 0)) { + ((sfd->file_offset & (pagesize - 1)) == 0)) { /* * case 1: page-aligned file offset */