X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ce8b16ee0f1aa0c7cae442128269f619e979d2d0..61427a88a76a2c2ef25d0d5b8132995c6f550e5c:/tools/cmake/test_prog/prog_stackgrowth.c diff --git a/tools/cmake/test_prog/prog_stackgrowth.c b/tools/cmake/test_prog/prog_stackgrowth.c index d75dde534e..dc7c0df0d8 100644 --- a/tools/cmake/test_prog/prog_stackgrowth.c +++ b/tools/cmake/test_prog/prog_stackgrowth.c @@ -11,17 +11,17 @@ static int iterate = 10; static int growsdown(int *x) { int y = (x > &y); - + if (--iterate > 0) y = growsdown(&y); - /* The stack sometimes changes at the 0th level. + /* The stack sometimes changes at the 0th level. * Original version did fail in this case, but I changed this around SimGrid 3.13 because of https://bugs.debian.org/814272 * Every arch failed on that day :( */ if (iterate != 0 && y != (x > &y)) { fprintf(stderr, "The stack changed its direction! (Iteration: %d. It was growing %s; &y=%p; &prevY=%p)\n", - (10-iterate), y?"down":"up", &y, x); + (10 - iterate), y ? "down" : "up", &y, x); exit(1); } return y;