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

Prevent passing of value that might not work for exit(3).

parent cdb033dc
No related branches found
No related tags found
No related merge requests found
...@@ -66,7 +66,7 @@ void pcdiXMPI(int iret, const char *filename, int line) ...@@ -66,7 +66,7 @@ void pcdiXMPI(int iret, const char *filename, int line)
"errorString: \"%s\"\n", "errorString: \"%s\"\n",
rank, filename, line, rank, filename, line,
errorString[0], errorString[1]); errorString[0], errorString[1]);
MPI_Abort(MPI_COMM_WORLD, iret); MPI_Abort(MPI_COMM_WORLD, 1);
} }
/*****************************************************************************/ /*****************************************************************************/
......
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