Remove useless unary plus.

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

Amit Langote
pull/11/head
Tom Lane 9 years ago
parent 05893712cc
commit c110678a47
  1. 2
      src/backend/utils/init/postinit.c

@ -498,7 +498,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)

Loading…
Cancel
Save