From f5078db0dbcc01145e50d7e4f07cbf6344542bfd Mon Sep 17 00:00:00 2001 From: Gleb Natapov Date: Sun, 27 May 2007 13:45:24 +0000 Subject: [PATCH] Fix order of parameters to function. This commit was SVN r14783. --- ompi/mca/pml/ob1/pml_ob1.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ompi/mca/pml/ob1/pml_ob1.h b/ompi/mca/pml/ob1/pml_ob1.h index 39b5c5ce60..f74f31e84f 100644 --- a/ompi/mca/pml/ob1/pml_ob1.h +++ b/ompi/mca/pml/ob1/pml_ob1.h @@ -286,8 +286,8 @@ do { \ int mca_pml_ob1_send_fin_btl(ompi_proc_t* proc, mca_bml_base_btl_t* bml_btl, void *hdr_des, uint8_t order); -static inline int mca_pml_ob1_send_fin(ompi_proc_t* proc, void *hdr_des, - mca_bml_base_btl_t* bml_btl, uint8_t order) +static inline int mca_pml_ob1_send_fin(ompi_proc_t* proc, + mca_bml_base_btl_t* bml_btl, void *hdr_des, uint8_t order) { if(mca_pml_ob1_send_fin_btl(proc, bml_btl, hdr_des, order) == OMPI_SUCCESS) return OMPI_SUCCESS;