--- trunk/src/applications/openmd/openmd.cpp 2014/02/20 16:27:30 1968 +++ trunk/src/applications/openmd/openmd.cpp 2014/02/26 14:14:50 1969 @@ -72,7 +72,7 @@ int main(int argc, char* argv[]){ // first things first, all of the initializations #ifdef IS_MPI - MPI::Init( argc, argv ); // the MPI communicators + MPI_Init( &argc, &argv ); // the MPI communicators #endif initSimError(); // the error handler @@ -229,7 +229,7 @@ int main(int argc, char* argv[]){ errorCheckPoint(); #ifdef IS_MPI - MPI::Finalize(); + MPI_Finalize(); #endif return 0 ;