X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/98aaf6c28dde5365ca65b9b18182042f45867e70..02a6df2bc7e1c28a70a33e28bf5589f6f90e4404:/examples/smpi/mc/non_termination2.c diff --git a/examples/smpi/mc/non_termination2.c b/examples/smpi/mc/non_termination2.c index aafca4d250..5ccafb6932 100644 --- a/examples/smpi/mc/non_termination2.c +++ b/examples/smpi/mc/non_termination2.c @@ -1,3 +1,8 @@ +/* Copyright (c) 2015-2023. The SimGrid Team. All rights reserved. */ + +/* This program is free software; you can redistribute it and/or modify it + * under the terms of the license (GNU LGPL) which comes with this package. */ + #include #include #include @@ -5,7 +10,9 @@ int x; int main(int argc, char **argv) { - int recv_buff, size, rank; + int recv_buff; + int size; + int rank; MPI_Status status; MPI_Init(&argc, &argv); @@ -13,7 +20,7 @@ int main(int argc, char **argv) { MPI_Comm_size(MPI_COMM_WORLD, &size); /* Get nr of tasks */ MPI_Comm_rank(MPI_COMM_WORLD, &rank); /* Get id of this process */ - MC_ignore(&(status.count), sizeof(status.count)); + MC_ignore(&status.count, sizeof status.count); if (rank == 0) { while (1) {