From: Christian Heinrich Date: Fri, 12 Feb 2016 13:20:24 +0000 (+0100) Subject: [SMPI] Argument alignment of func call X-Git-Tag: v3_13~748 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/f390dc83a51f42905e2d29dd236e86d5c861436b?ds=sidebyside [SMPI] Argument alignment of func call --- diff --git a/src/smpi/smpi_global.cpp b/src/smpi/smpi_global.cpp index 9feadcde8e..e9ef952fad 100644 --- a/src/smpi/smpi_global.cpp +++ b/src/smpi/smpi_global.cpp @@ -98,7 +98,7 @@ void smpi_process_init(int *argc, char ***argv) MPI_Comm* temp_comm_world; xbt_bar_t temp_bar; - smpi_deployment_register_process(instance_id, rank, index, &temp_comm_world ,&temp_bar); + smpi_deployment_register_process(instance_id, rank, index, &temp_comm_world, &temp_bar); data = smpi_process_remote_data(index); data->comm_world = temp_comm_world; if(temp_bar != NULL) data->finalization_barrier = temp_bar;