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 be361ef

Browse filesBrowse files
committed
Fix compiler warning: Size isn't 64 bits on 32 bit platforms.
Report by Peter Eisentraut.
1 parent 5df99f6 commit be361ef
Copy full SHA for be361ef

File tree

Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed

‎contrib/test_shm_mq/setup.c

Copy file name to clipboardExpand all lines: contrib/test_shm_mq/setup.c
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ setup_dynamic_shared_memory(uint64 queue_size, int nworkers,
101101
if (queue_size < 0 || ((uint64) queue_size) < shm_mq_minimum_size)
102102
ereport(ERROR,
103103
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
104-
errmsg("queue size must be at least " UINT64_FORMAT " bytes",
104+
errmsg("queue size must be at least %lu bytes",
105105
shm_mq_minimum_size)));
106106

107107
/*

0 commit comments

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