Skip to content
Snippets Groups Projects
Commit c822ad5a authored by Thomas Jahns's avatar Thomas Jahns :cartwheel:
Browse files

Remove redundant assignment.

parent 6c176484
No related branches found
No related tags found
No related merge requests found
......@@ -747,10 +747,7 @@ int pioInit ( int commGlobArg, int nProcsIO, int IOMode, int nNamespaces,
#endif
#ifdef USE_MPI
MPI_Comm commGlob;
commGlob = MPI_COMM_NULL;
commGlob = MPI_Comm_f2c (( MPI_Fint ) commGlobArg );
MPI_Comm commGlob = MPI_Comm_f2c((MPI_Fint)commGlobArg);
xassert ( commGlob != MPI_COMM_NULL );
return MPI_Comm_c2f ( pioInit_c ( commGlob, nProcsIO, IOMode, nNamespaces,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment