mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
Fix compiler warning from Clang.
Per build farm. Discussion: https://postgr.es/m/20200731062626.GD3317%40paquier.xyz
This commit is contained in:
@ -2238,7 +2238,7 @@ static struct config_int ConfigureNamesInt[] =
|
|||||||
GUC_UNIT_MB
|
GUC_UNIT_MB
|
||||||
},
|
},
|
||||||
&min_dynamic_shared_memory,
|
&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
|
NULL, NULL, NULL
|
||||||
},
|
},
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user