Commit be361ef2 authored by Robert Haas's avatar Robert Haas

Fix compiler warning: Size isn't 64 bits on 32 bit platforms.

Report by Peter Eisentraut.
parent 5df99f64
......@@ -101,7 +101,7 @@ setup_dynamic_shared_memory(uint64 queue_size, int nworkers,
if (queue_size < 0 || ((uint64) queue_size) < shm_mq_minimum_size)
ereport(ERROR,
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
errmsg("queue size must be at least " UINT64_FORMAT " bytes",
errmsg("queue size must be at least %lu bytes",
shm_mq_minimum_size)));
/*
......
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