X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b6644192f7f981dd5f954e075370ddc3ac7dfc92..5ed37babb2fa9097abe82df299c0aa259ed84d5a:/examples/smpi/ampi_test/ampi_test.cpp diff --git a/examples/smpi/ampi_test/ampi_test.cpp b/examples/smpi/ampi_test/ampi_test.cpp index e3a8cf421c..53308b1b67 100644 --- a/examples/smpi/ampi_test/ampi_test.cpp +++ b/examples/smpi/ampi_test/ampi_test.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2009-2020. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2009-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. */ @@ -20,8 +20,8 @@ int main(int argc, char* argv[]) free(pointer); pointer = calloc(100, sizeof(int)); int rank; - int err = MPI_Comm_rank(MPI_COMM_WORLD, &rank); /* Get id of this process */ - if (err != MPI_SUCCESS) { + /* Get id of this process */ + if (int err = MPI_Comm_rank(MPI_COMM_WORLD, &rank); err != MPI_SUCCESS) { fprintf(stderr, "MPI_Comm_rank failed: %d", err); MPI_Abort(MPI_COMM_WORLD, EXIT_FAILURE); exit(EXIT_FAILURE);