From c8d13486cc02c6c9d667fa6bec5b6724538f4550 Mon Sep 17 00:00:00 2001 From: Matthew Dosanjh Date: Mon, 6 Aug 2018 10:25:04 -0600 Subject: [PATCH] Fixed promotion bug Signed-off-by: Nathan Hjelm --- .../pml/ob1/custommatch/pml_ob1_custom_match_fuzzy512-byte.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ompi/mca/pml/ob1/custommatch/pml_ob1_custom_match_fuzzy512-byte.h b/ompi/mca/pml/ob1/custommatch/pml_ob1_custom_match_fuzzy512-byte.h index 7ca59d89ab..fca65806f3 100644 --- a/ompi/mca/pml/ob1/custommatch/pml_ob1_custom_match_fuzzy512-byte.h +++ b/ompi/mca/pml/ob1/custommatch/pml_ob1_custom_match_fuzzy512-byte.h @@ -107,7 +107,7 @@ static inline void* custom_match_prq_find_verify(custom_match_prq* list, int tag { for(i = elem->start; i <= elem->end; i++) { - if((0x1 << i & result) && elem->value[i]) + if((0x1l << i & result) && elem->value[i]) { mca_pml_base_request_t *req = (mca_pml_base_request_t *)elem->value[i]; if((req->req_peer == peer || req->req_peer == OMPI_ANY_SOURCE) && (req->req_tag == tag || req->req_tag == OMPI_ANY_TAG))