From 0694a3203beb53322358dfeaf48fb3781e1ab9fc Mon Sep 17 00:00:00 2001 From: Greg Koenig Date: Thu, 11 Nov 2010 21:54:28 +0000 Subject: [PATCH] This was a small mistake introduced in r23925 in the changes to libevent. This commit was SVN r24043. The following SVN revision numbers were found above: r23925 --> open-mpi/ompi@fceabb24983f764849f791a691c8c76378840ed8 --- ompi/mca/mtl/portals/mtl_portals.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ompi/mca/mtl/portals/mtl_portals.h b/ompi/mca/mtl/portals/mtl_portals.h index 71c9293714..f6f7c913d5 100644 --- a/ompi/mca/mtl/portals/mtl_portals.h +++ b/ompi/mca/mtl/portals/mtl_portals.h @@ -170,7 +170,7 @@ OBJ_CLASS_DECLARATION(ompi_mtl_portals_event_t); #define PTL_IS_READY_MSG(match_bits) \ (0 != (PTL_READY_MSG & match_bits)) #define PTL_IS_SYNC_MSG(event) \ - (0 != opal_event.hdr_data) + (0 != event.hdr_data) #define PTL_GET_TAG(match_bits) ((int)(match_bits & PTL_TAG_MASK)) #define PTL_GET_SOURCE(match_bits) ((int)((match_bits & PTL_SOURCE_MASK) >> 32))