1
0
mirror of https://github.com/postgres/postgres.git synced 2025-04-25 21:42:33 +03:00

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

Report by Peter Eisentraut.
This commit is contained in:
Robert Haas 2014-01-15 08:29:28 -05:00
parent 5df99f6481
commit be361ef2a0

View File

@ -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)));
/*