Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 7be0449

Browse filesBrowse files
committed
Fix compiler warning from Clang.
Per build farm. Discussion: https://postgr.es/m/20200731062626.GD3317%40paquier.xyz
1 parent 84b1c63 commit 7be0449
Copy full SHA for 7be0449

File tree

Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Filter options
  • src/backend/utils/misc
Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed

‎src/backend/utils/misc/guc.c

Copy file name to clipboardExpand all lines: src/backend/utils/misc/guc.c
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2238,7 +2238,7 @@ static struct config_int ConfigureNamesInt[] =
22382238
GUC_UNIT_MB
22392239
},
22402240
&min_dynamic_shared_memory,
2241-
0, 0, Min(INT_MAX, SIZE_MAX / 1024 / 1024),
2241+
0, 0, (int) Min((size_t) INT_MAX, SIZE_MAX / (1024 * 1024)),
22422242
NULL, NULL, NULL
22432243
},
22442244

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.