From 025fd8a9fc1f420c9982ab5d9153f39ef025ab70 Mon Sep 17 00:00:00 2001 From: Gilles Gouaillardet Date: Fri, 20 Nov 2015 13:30:35 +0900 Subject: [PATCH] osc: use PMPI_* insted of MPI_* --- ompi/mca/osc/base/osc_base_obj_convert.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ompi/mca/osc/base/osc_base_obj_convert.h b/ompi/mca/osc/base/osc_base_obj_convert.h index 4163670a08..c6514bbbe0 100644 --- a/ompi/mca/osc/base/osc_base_obj_convert.h +++ b/ompi/mca/osc/base/osc_base_obj_convert.h @@ -76,7 +76,7 @@ static inline ompi_op_t * ompi_osc_base_op_create(int op_id) { - ompi_op_t *op = MPI_Op_f2c(op_id); + ompi_op_t *op = PMPI_Op_f2c(op_id); OBJ_RETAIN(op); return op; }