diff options
author | Robert Haas <rhaas@postgresql.org> | 2014-03-18 13:30:19 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2014-03-18 13:30:19 -0400 |
commit | c676ac0f3fc87911588ca8e5f92483d1671ba89f (patch) | |
tree | 39d9a7c52129f4c2ddc1862b4cc127e4bab68dc5 /contrib/test_shm_mq/worker.c | |
parent | 49c0864d7ef5227faa24f903902db90e5c9d5d69 (diff) | |
download | postgresql-c676ac0f3fc87911588ca8e5f92483d1671ba89f.tar.gz postgresql-c676ac0f3fc87911588ca8e5f92483d1671ba89f.zip |
test_shm_mq: Use Size rather than uint64.
Commit 3bd261ca18c67eafe18088e58fab511e3b965418 updated the API but
neglected to make the corresponding edits here.
Per Tom Lane and the buildfarm.
Diffstat (limited to 'contrib/test_shm_mq/worker.c')
-rw-r--r-- | contrib/test_shm_mq/worker.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/test_shm_mq/worker.c b/contrib/test_shm_mq/worker.c index 0322aafa37e..5627a57a3ec 100644 --- a/contrib/test_shm_mq/worker.c +++ b/contrib/test_shm_mq/worker.c @@ -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; |