bug-hurd
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH 6/9] ext2fs: simplify expression


From: Justus Winter
Subject: [PATCH 6/9] ext2fs: simplify expression
Date: Mon, 28 Apr 2014 12:20:01 +0200

* ext2fs/pager.c (add_pager_max_prot): Simplify expression.
---
 ext2fs/pager.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/ext2fs/pager.c b/ext2fs/pager.c
index 6e99c83..9116b8c 100644
--- a/ext2fs/pager.c
+++ b/ext2fs/pager.c
@@ -1453,8 +1453,7 @@ diskfs_max_user_pager_prot ()
          if (upi->type == FILE_DATA)
            max_prot |= upi->max_prot;
          /* Stop iterating if MAX_PROT is as filled as it's going to get. */
-         return
-           (max_prot == (VM_PROT_READ|VM_PROT_WRITE|VM_PROT_EXECUTE)) ? 1 : 0;
+         return max_prot == (VM_PROT_READ|VM_PROT_WRITE|VM_PROT_EXECUTE);
        }
 
       disable_caching ();              /* Make any silly pagers go away. */
-- 
1.9.2




reply via email to

[Prev in Thread] Current Thread [Next in Thread]