[PATCH 21/30] return statement cleanup - kill pointless parenthesesin fs/coda/upcall.c

From: Jesper Juhl
Date: Wed Dec 15 2004 - 20:01:41 EST



This patch removes pointless parentheses from return statements in
fs/coda/upcall.c

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

--- linux-2.6.10-rc3-bk8-orig/fs/coda/upcall.c 2004-10-18 23:54:55.000000000 +0200
+++ linux-2.6.10-rc3-bk8/fs/coda/upcall.c 2004-12-15 23:50:18.000000000 +0100
@@ -838,12 +838,12 @@ int coda_downcall(int opcode, union outp
coda_cache_clear_all(sb);
shrink_dcache_sb(sb);
coda_flag_inode(sb->s_root->d_inode, C_FLUSH);
- return(0);
+ return 0;
}

case CODA_PURGEUSER : {
coda_cache_clear_all(sb);
- return(0);
+ return 0;
}

case CODA_ZAPDIR : {
@@ -857,7 +857,7 @@ int coda_downcall(int opcode, union outp
iput(inode);
}

- return(0);
+ return 0;
}

case CODA_ZAPFILE : {
@@ -901,4 +901,3 @@ int coda_downcall(int opcode, union outp
}
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/