Messages in this thread Patch in this message |  | | | Date | Thu, 16 Dec 2004 01:12:23 +0100 (CET) | | From | Jesper Juhl <> | | Subject | [PATCH 4/30] return statement cleanup - kill pointless parentheses in fs/efs/inode.c |
| |
This patch removes pointless parentheses from return statements in fs/efs/inode.c
Signed-off-by: Jesper Juhl <juhl-lkml@dif.dk>
--- 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@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |