From fb627b76ccc4c7074e37b6b94155864f6cbd1b23 Mon Sep 17 00:00:00 2001 From: Neil Conway Date: Wed, 11 Jan 2006 08:43:13 +0000 Subject: Cosmetic code cleanup: fix a bunch of places that used "return (expr);" rather than "return expr;" -- the latter style is used in most of the tree. I kept the parentheses when they were necessary or useful because the return expression was complex. --- src/interfaces/libpq/fe-connect.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/interfaces/libpq/fe-connect.c') diff --git a/src/interfaces/libpq/fe-connect.c b/src/interfaces/libpq/fe-connect.c index 8204a0e1b79..69db8d830cb 100644 --- a/src/interfaces/libpq/fe-connect.c +++ b/src/interfaces/libpq/fe-connect.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/interfaces/libpq/fe-connect.c,v 1.324 2005/11/22 18:17:32 momjian Exp $ + * $PostgreSQL: pgsql/src/interfaces/libpq/fe-connect.c,v 1.325 2006/01/11 08:43:13 neilc Exp $ * *------------------------------------------------------------------------- */ @@ -2936,7 +2936,7 @@ PQsetClientEncoding(PGconn *conn, const char *encoding) status = 0; /* everything is ok */ } PQclear(res); - return (status); + return status; } PGVerbosity -- cgit v1.2.3