[PATCH 4/30] return statement cleanup - kill pointless parenthesesin fs/efs/inode.c

From: Jesper Juhl
Date: Wed Dec 15 2004 - 19:09:05 EST



This patch removes pointless parentheses from return statements in
fs/efs/inode.c

Signed-off-by: Jesper Juhl <juhl-lkml@xxxxxx>

--- linux-2.6.10-rc3-bk8-orig/fs/efs/inode.c 2004-10-18 23:53:51.000000000 +0200
+++ linux-2.6.10-rc3-bk8/fs/efs/inode.c 2004-12-15 22:33:18.000000000 +0100
@@ -183,7 +183,7 @@ efs_extent_check(efs_extent *ptr, efs_bl
offset = ptr->cooked.ex_offset;

if ((block >= offset) && (block < offset+length)) {
- return(sb->fs_start + start + block - offset);
+ return (sb->fs_start + start + block - offset);
} else {
return 0;
}


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/