diff options
author | Neil Conway <neilc@samurai.com> | 2006-01-11 08:43:13 +0000 |
---|---|---|
committer | Neil Conway <neilc@samurai.com> | 2006-01-11 08:43:13 +0000 |
commit | fb627b76ccc4c7074e37b6b94155864f6cbd1b23 (patch) | |
tree | a8e7b008b4f6c2a2188641937e5b984f40b60104 /src/tutorial | |
parent | 762bcbdba2a2519b01b17b2c2b28f36e5ee9ea25 (diff) | |
download | postgresql-fb627b76ccc4c7074e37b6b94155864f6cbd1b23.tar.gz |
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.
Diffstat (limited to 'src/tutorial')
-rw-r--r-- | src/tutorial/funcs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tutorial/funcs.c b/src/tutorial/funcs.c index 5e8ad6ee70..a988ad431b 100644 --- a/src/tutorial/funcs.c +++ b/src/tutorial/funcs.c @@ -102,6 +102,6 @@ c_overpaid(HeapTupleHeader t, /* the current instance of EMP */ salary = DatumGetInt32(GetAttributeByName(t, "salary", &isnull)); if (isnull) - return (false); + return false; return salary > limit; } |