From 61d62b6821e1ef87e6d134feb1eaf418b665df05 Mon Sep 17 00:00:00 2001 From: Howard Pritchard Date: Fri, 19 Aug 2016 17:01:02 -0500 Subject: [PATCH] mtl/ofi: fix a botched assignment of av_type Well now the av_type is being assigned correctly Signed-off-by: Howard Pritchard --- ompi/mca/mtl/ofi/mtl_ofi_component.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ompi/mca/mtl/ofi/mtl_ofi_component.c b/ompi/mca/mtl/ofi/mtl_ofi_component.c index f947e3d1cc..9ab7c1405d 100644 --- a/ompi/mca/mtl/ofi/mtl_ofi_component.c +++ b/ompi/mca/mtl/ofi/mtl_ofi_component.c @@ -457,7 +457,7 @@ ompi_mtl_ofi_component_init(bool enable_progress_threads, * The remote fi_addr will be stored in the ofi_endpoint struct. */ - av_attr.type = (MTL_OFI_AV_TABLE == av_type) ? FI_AV_MAP: FI_AV_TABLE; + av_attr.type = (MTL_OFI_AV_TABLE == av_type) ? FI_AV_TABLE: FI_AV_MAP; ret = fi_av_open(ompi_mtl_ofi.domain, &av_attr, &ompi_mtl_ofi.av, NULL); if (ret) {