Skip to content

Commit c7c1809

Browse files
Joe-DownsJoseph Downs
authored andcommitted
WIP: fix typo for MPI_internal
1 parent 2bbf9eb commit c7c1809

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ompi/mpi/c/abi_converters.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -547,16 +547,16 @@ __opal_attribute_always_inline__ static inline void ompi_convert_abi_status_inte
547547
void *ptr = &out->_ucount;
548548
out->MPI_SOURCE = inp->MPI_SOURCE;
549549
out->MPI_TAG = inp->MPI_TAG;
550-
out->_cancelled = inp->MPI_Internal[0];
551-
memcpy(ptr, &inp->MPI_Internal[1],sizeof(out->_ucount));
550+
out->_cancelled = inp->MPI_internal[0];
551+
memcpy(ptr, &inp->MPI_internal[1],sizeof(out->_ucount));
552552
out->MPI_ERROR = ompi_convert_abi_error_intern_error(inp->MPI_ERROR);
553553
}
554554
__opal_attribute_always_inline__ static inline void ompi_convert_intern_status_abi_status(MPI_Status_ABI_INTERNAL *out, MPI_Status *inp)
555555
{
556-
void *ptr = &out->MPI_Internal[1];
556+
void *ptr = &out->MPI_internal[1];
557557
out->MPI_SOURCE = inp->MPI_SOURCE;
558558
out->MPI_TAG = inp->MPI_TAG;
559-
out->MPI_Internal[0] =inp->_cancelled;
559+
out->MPI_internal[0] =inp->_cancelled;
560560
memcpy(ptr, &inp->_ucount,sizeof(inp->_ucount));
561561
}
562562

0 commit comments

Comments
 (0)