Commit c110678a authored by Tom Lane's avatar Tom Lane

Remove useless unary plus.

It's harmless, but might confuse readers.  Seems to have been introduced
in 6bc8ef0b.  Back-patch, just to avoid cosmetic cross-branch
differences.

Amit Langote
parent 05893712
...@@ -498,7 +498,7 @@ InitializeMaxBackends(void) ...@@ -498,7 +498,7 @@ InitializeMaxBackends(void)
/* the extra unit accounts for the autovacuum launcher */ /* the extra unit accounts for the autovacuum launcher */
MaxBackends = MaxConnections + autovacuum_max_workers + 1 + MaxBackends = MaxConnections + autovacuum_max_workers + 1 +
+max_worker_processes; max_worker_processes;
/* internal error because the values were all checked previously */ /* internal error because the values were all checked previously */
if (MaxBackends > MAX_BACKENDS) if (MaxBackends > MAX_BACKENDS)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment