Commit 7be04496 authored by Thomas Munro's avatar Thomas Munro

Fix compiler warning from Clang.

Per build farm.

Discussion: https://postgr.es/m/20200731062626.GD3317%40paquier.xyz
parent 84b1c63a
......@@ -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
},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment