summaryrefslogtreecommitdiff
path: root/src/backend/utils/init/postinit.c
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2016-02-29 10:48:40 -0500
committerTom Lane <tgl@sss.pgh.pa.us>2016-02-29 10:48:45 -0500
commit28d65f99e21429b7138d8dddcc2b6217ae0e6763 (patch)
treeb180d867ade0b70cca706b7cd86eb854ae05ed8a /src/backend/utils/init/postinit.c
parentf1dfcf63d9f076d9c200c0d7ee670899149e302a (diff)
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
Diffstat (limited to 'src/backend/utils/init/postinit.c')
-rw-r--r--src/backend/utils/init/postinit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/init/postinit.c b/src/backend/utils/init/postinit.c
index c172d3a30e9..5dba5d2a5ba 100644
--- a/src/backend/utils/init/postinit.c
+++ b/src/backend/utils/init/postinit.c
@@ -485,7 +485,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)