Skip to content

Commit

Permalink
change 2 occurrences of return(0) to return(MPI_SUCCESS) (MPI_SUCCESS…
Browse files Browse the repository at this point in the history
… is currently 0 so no functional change)
  • Loading branch information
Raymond Loy committed Apr 22, 2015
1 parent 3a61862 commit bdf9703
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mpi-serial/info.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ int MPI_Info_create(MPI_Info *info)
{
/* For now, we aren't storing anything, so don't bother with a real handle */
*info=0;
return 0;
return(MPI_SUCCESS);
}


Expand Down Expand Up @@ -49,5 +49,5 @@ int MPI_Info_free(MPI_Info *info)
{
/* For now, we aren't storing anything, so don't bother with a real handle */
*info=0;
return 0;
return(MPI_SUCCESS);
}

0 comments on commit bdf9703

Please sign in to comment.