1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

test_shm_mq: Use Size rather than uint64.

Commit 3bd261ca18 updated the API but
neglected to make the corresponding edits here.

Per Tom Lane and the buildfarm.
This commit is contained in:
Robert Haas
2014-03-18 13:30:19 -04:00
parent 49c0864d7e
commit c676ac0f3f
2 changed files with 6 additions and 6 deletions

View File

@ -180,7 +180,7 @@ attach_to_queues(dsm_segment *seg, shm_toc *toc, int myworkernumber,
static void
copy_messages(shm_mq_handle *inqh, shm_mq_handle *outqh)
{
uint64 len;
Size len;
void *data;
shm_mq_result res;