From 1c830798fe54268cc0f9585b5940bea47fa8eb8a Mon Sep 17 00:00:00 2001 From: Ralf Baechle Date: Wed, 5 Jun 2013 02:20:15 +0200 Subject: Remove parenthesis around arguments of return statements. Signed-off-by: Ralf Baechle --- kiss/net2kiss.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'kiss') diff --git a/kiss/net2kiss.c b/kiss/net2kiss.c index 27cd702..535d86c 100644 --- a/kiss/net2kiss.c +++ b/kiss/net2kiss.c @@ -254,7 +254,7 @@ static int openpty(int *amaster, int *aslave, char *name, line[9] = *cp2; if ((master = open(line, O_RDWR, 0)) == -1) { if (errno == ENOENT) - return (-1); /* out of ptys */ + return -1; /* out of ptys */ } else { line[5] = 't'; (void) chown(line, getuid(), @@ -284,7 +284,7 @@ static int openpty(int *amaster, int *aslave, char *name, } } errno = ENOENT; /* out of ptys */ - return (-1); + return -1; } /* ---------------------------------------------------------------------- */ -- cgit v1.2.3