X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e709643ef0c5b61c6c878016c418bffa2b1b20cd..c4c82977e0a105cdf7b04010ddd21bbf15dced4d:/teshsuite/smpi/macro-partial-shared/macro-partial-shared.c diff --git a/teshsuite/smpi/macro-partial-shared/macro-partial-shared.c b/teshsuite/smpi/macro-partial-shared/macro-partial-shared.c index 29168cc9d0..e85b2aa2d3 100644 --- a/teshsuite/smpi/macro-partial-shared/macro-partial-shared.c +++ b/teshsuite/smpi/macro-partial-shared/macro-partial-shared.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2017-2020. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2017-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. */ @@ -37,7 +37,7 @@ static int check_all(const uint8_t* buf, size_t start, size_t stop, uint8_t valu // Return true iff "enough" elements are equal to (i+value)%256 between buf[start] and buf[stop-1]. static int check_enough(const uint8_t* buf, size_t start, size_t stop, uint8_t value) { - int page_size = 0x1000; + const unsigned int page_size = 0x1000; size_t size = stop-start; if(size <= 2*page_size) // we are not sure to have a whole page that is shared return 1;