X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/dccf1b41e9c7b5a696f01abceaa2779fe65f154f..ea74f5d95928a521a588737e81f1de94eef25d19:/examples/smpi/mc/non_termination1.c diff --git a/examples/smpi/mc/non_termination1.c b/examples/smpi/mc/non_termination1.c index 24f0593a0c..a0cb471d08 100644 --- a/examples/smpi/mc/non_termination1.c +++ b/examples/smpi/mc/non_termination1.c @@ -1,3 +1,8 @@ +/* Copyright (c) 2015-2022. 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 @@ -6,7 +11,9 @@ int x = 5; int y = 8; 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); @@ -14,7 +21,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) {