diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2016-02-29 10:48:40 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2016-02-29 10:48:50 -0500 |
commit | 0a20d07ea6558484b51e57cbcab11f97180a3dee (patch) | |
tree | db99bcd4d74db181781f7c09c5f60f87d379f17b | |
parent | 9b69d5c1daeb62804eeaeab2f804191dbe0a943d (diff) | |
download | postgresql-0a20d07ea6558484b51e57cbcab11f97180a3dee.tar.gz postgresql-0a20d07ea6558484b51e57cbcab11f97180a3dee.zip |
Remove useless unary plus.
It's harmless, but might confuse readers. Seems to have been introduced
in 6bc8ef0b7f1f1df3. Back-patch, just to avoid cosmetic cross-branch
differences.
Amit Langote
-rw-r--r-- | src/backend/utils/init/postinit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/init/postinit.c b/src/backend/utils/init/postinit.c index 3e18215334b..baa9c2f1164 100644 --- a/src/backend/utils/init/postinit.c +++ b/src/backend/utils/init/postinit.c @@ -456,7 +456,7 @@ InitializeMaxBackends(void) /* the extra unit accounts for the autovacuum launcher */ MaxBackends = MaxConnections + autovacuum_max_workers + 1 + - +max_worker_processes; + max_worker_processes; /* internal error because the values were all checked previously */ if (MaxBackends > MAX_BACKENDS) |