Commit b1365ff7 authored by Robert Haas's avatar Robert Haas

test_shm_mq: Try again to fix compiler warning.

Per complaints from Andres Freund and Tom Lane.
parent ed467583
...@@ -102,7 +102,7 @@ setup_dynamic_shared_memory(int64 queue_size, int nworkers, ...@@ -102,7 +102,7 @@ setup_dynamic_shared_memory(int64 queue_size, int nworkers,
ereport(ERROR, ereport(ERROR,
(errcode(ERRCODE_INVALID_PARAMETER_VALUE), (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
errmsg("queue size must be at least %lu bytes", errmsg("queue size must be at least %lu bytes",
shm_mq_minimum_size))); (unsigned long) shm_mq_minimum_size)));
/* /*
* Estimate how much shared memory we need. * Estimate how much shared memory we need.
......
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