From 10a8e46f9904ad08665cd1c2a0cea89488c6ebd6 Mon Sep 17 00:00:00 2001 From: George Bosilca Date: Thu, 14 Jul 2005 22:06:27 +0000 Subject: [PATCH] If I want the default values then I have to pick them up from the req_base !!! This commit was SVN r6504. --- ompi/mca/pml/base/pml_base_bsend.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ompi/mca/pml/base/pml_base_bsend.c b/ompi/mca/pml/base/pml_base_bsend.c index 4ddbb66a5d..bf4d6dcf3e 100644 --- a/ompi/mca/pml/base/pml_base_bsend.c +++ b/ompi/mca/pml/base/pml_base_bsend.c @@ -227,8 +227,8 @@ int mca_pml_base_bsend_request_start(ompi_request_t* request) * using the user buffers. Otherwise at the end of this function we replace * it with a convertor using the allocator buffer !!! */ - ompi_convertor_prepare_for_send( &sendreq->req_convertor, sendreq->req_datatype, - sendreq->req_count, sendreq->req_base.req_addr ); + ompi_convertor_prepare_for_send( &sendreq->req_convertor, sendreq->req_base.req_datatype, + sendreq->req_base.req_count, sendreq->req_base.req_addr ); /* increment count of pending requests */ mca_pml_bsend_count++;