Skip to content

Commit c8d1348

Browse files
mdosanjhhjelmn
authored andcommitted
Fixed promotion bug
Signed-off-by: Nathan Hjelm <[email protected]>
1 parent dd74c62 commit c8d1348

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ompi/mca/pml/ob1/custommatch/pml_ob1_custom_match_fuzzy512-byte.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ static inline void* custom_match_prq_find_verify(custom_match_prq* list, int tag
107107
{
108108
for(i = elem->start; i <= elem->end; i++)
109109
{
110-
if((0x1 << i & result) && elem->value[i])
110+
if((0x1l << i & result) && elem->value[i])
111111
{
112112
mca_pml_base_request_t *req = (mca_pml_base_request_t *)elem->value[i];
113113
if((req->req_peer == peer || req->req_peer == OMPI_ANY_SOURCE) && (req->req_tag == tag || req->req_tag == OMPI_ANY_TAG))

0 commit comments

Comments
 (0)