Skip to content

Commit 28d65f9

Browse files
committed
Remove useless unary plus.
It's harmless, but might confuse readers. Seems to have been introduced in 6bc8ef0. Back-patch, just to avoid cosmetic cross-branch differences. Amit Langote
1 parent f1dfcf6 commit 28d65f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/utils/init/postinit.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ InitializeMaxBackends(void)
485485

486486
/* the extra unit accounts for the autovacuum launcher */
487487
MaxBackends = MaxConnections + autovacuum_max_workers + 1 +
488-
+max_worker_processes;
488+
max_worker_processes;
489489

490490
/* internal error because the values were all checked previously */
491491
if (MaxBackends > MAX_BACKENDS)

0 commit comments

Comments
 (0)