aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ecryptfs/mmap.c
diff options
context:
space:
mode:
authorMichael Halcrow <mhalcrow@us.ibm.com>2007-10-16 04:28:06 -0400
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-10-16 12:43:12 -0400
commit5dda6992a3138f3839dcaecbcd2fbea4dd514c7c (patch)
treec9ca012364edc18a2baed74721052b7da9d39f53 /fs/ecryptfs/mmap.c
parent45eaab79678b9e27e08f0cf250eb2df9d6a48df0 (diff)
eCryptfs: remove assignments in if-statements
Remove assignments in if-statements. Signed-off-by: Michael Halcrow <mhalcrow@us.ibm.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/ecryptfs/mmap.c')
-rw-r--r--fs/ecryptfs/mmap.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/fs/ecryptfs/mmap.c b/fs/ecryptfs/mmap.c
index 89dbbbbcce07..307f7ee77420 100644
--- a/fs/ecryptfs/mmap.c
+++ b/fs/ecryptfs/mmap.c
@@ -762,8 +762,9 @@ ecryptfs_write_zeros(struct file *file, pgoff_t index, int start, int num_zeros)
762 rc = PTR_ERR(tmp_page); 762 rc = PTR_ERR(tmp_page);
763 goto out; 763 goto out;
764 } 764 }
765 if ((rc = ecryptfs_prepare_write_no_truncate(file, tmp_page, start, 765 rc = ecryptfs_prepare_write_no_truncate(file, tmp_page, start,
766 (start + num_zeros)))) { 766 (start + num_zeros));
767 if (rc) {
767 ecryptfs_printk(KERN_ERR, "Error preparing to write zero's " 768 ecryptfs_printk(KERN_ERR, "Error preparing to write zero's "
768 "to page at index [0x%.16x]\n", 769 "to page at index [0x%.16x]\n",
769 index); 770 index);