mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-02-17 19:30:00 +08:00
Fix compiler warning from Clang.
Per build farm. Discussion: https://postgr.es/m/20200731062626.GD3317%40paquier.xyz
This commit is contained in:
parent
84b1c63ad4
commit
7be04496a9
@ -2238,7 +2238,7 @@ static struct config_int ConfigureNamesInt[] =
|
||||
GUC_UNIT_MB
|
||||
},
|
||||
&min_dynamic_shared_memory,
|
||||
0, 0, Min(INT_MAX, SIZE_MAX / 1024 / 1024),
|
||||
0, 0, (int) Min((size_t) INT_MAX, SIZE_MAX / (1024 * 1024)),
|
||||
NULL, NULL, NULL
|
||||
},
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user