Browse Source

pdevs/mpi: fix bug

Eric Ramat 7 years ago
parent
commit
9106efc1eb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/tests/mpi/cluster/main.cpp

+ 1 - 1
src/tests/mpi/cluster/main.cpp

@@ -252,7 +252,7 @@ void example_simple(int argc, char *argv[])
 
 int main(int argc, char *argv[])
 {
-  example_simple(argc, argv);
   read();
+  example_simple(argc, argv);
   return 0;
 }