Skip to content

Commit 0a20d07

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 9b69d5c commit 0a20d07

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
@@ -456,7 +456,7 @@ InitializeMaxBackends(void)
456456

457457
/* the extra unit accounts for the autovacuum launcher */
458458
MaxBackends = MaxConnections + autovacuum_max_workers + 1 +
459-
+max_worker_processes;
459+
max_worker_processes;
460460

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

0 commit comments

Comments
 (0)