linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] freevxfs: remove useless parentheses after return
@ 2016-06-16 14:01 Wei Tang
  0 siblings, 0 replies; only message in thread
From: Wei Tang @ 2016-06-16 14:01 UTC (permalink / raw)
  To: hch; +Cc: linux-kernel, Wei Tang

The parentheses after return is not required, remove it.

Signed-off-by: Wei Tang <tangwei@cmss.chinamobile.com>
---
 fs/freevxfs/vxfs_inode.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/freevxfs/vxfs_inode.c b/fs/freevxfs/vxfs_inode.c
index 3e2ccad..93e9c16 100644
--- a/fs/freevxfs/vxfs_inode.c
+++ b/fs/freevxfs/vxfs_inode.c
@@ -208,7 +208,7 @@ vxfs_transmod(struct vxfs_inode_info *vip)
 	if (VXFS_ISSOC(vip))
 		ret |= S_IFSOCK;
 
-	return (ret);
+	return ret;
 }
 
 /**
-- 
1.9.1

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2016-06-16 14:07 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-06-16 14:01 [PATCH] freevxfs: remove useless parentheses after return Wei Tang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).