1
1

fixed error message. thanks to Arthur Huillet

This commit was SVN r21952.
Этот коммит содержится в:
Lenny Verkhovsky 2009-09-08 15:36:37 +00:00
родитель c877b1a5f8
Коммит 130d15384f

Просмотреть файл

@ -313,7 +313,7 @@ static inline struct ompi_proc_t* ompi_comm_peer_lookup(ompi_communicator_t* com
{
#if OPAL_ENABLE_DEBUG
if(peer_id >= comm->c_remote_group->grp_proc_count) {
opal_output(0, "ompi_comm_lookup_peer: invalid peer index (%d)", peer_id);
opal_output(0, "%s: invalid peer index (%d)", __FUNCTION__,peer_id);
return (struct ompi_proc_t *) NULL;
}
#endif