From afa8313f928dadd74dba812bef6038ba0d144370 Mon Sep 17 00:00:00 2001 From: Ralf Baechle Date: Wed, 5 Jun 2013 02:20:24 +0200 Subject: Remove parenthesis around arguments of return statements. Signed-off-by: Ralf Baechle --- listen/listen.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'listen/listen.c') diff --git a/listen/listen.c b/listen/listen.c index 04be3f1..11f365e 100644 --- a/listen/listen.c +++ b/listen/listen.c @@ -332,7 +332,7 @@ int get16(unsigned char *cp) x <<= 8; x |= *cp++; - return (x); + return x; } int get32(unsigned char *cp) @@ -347,5 +347,5 @@ int get32(unsigned char *cp) x <<= 8; x |= *cp; - return (x); + return x; } -- cgit v1.2.3