mirror of
https://github.com/postgres/postgres.git
synced 2025-05-06 19:59:18 +03:00
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
This commit is contained in:
parent
f1dfcf63d9
commit
28d65f99e2
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user