X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ec09841c5c348a41ad076a0c5beae57448c1923e..48eb2f1b9262fc74f527816c348ed2aa6efa9f65:/teshsuite/smpi/mpich3-test/datatype/longdouble.c diff --git a/teshsuite/smpi/mpich3-test/datatype/longdouble.c b/teshsuite/smpi/mpich3-test/datatype/longdouble.c index 9275ef1707..d9f9ca55c1 100644 --- a/teshsuite/smpi/mpich3-test/datatype/longdouble.c +++ b/teshsuite/smpi/mpich3-test/datatype/longdouble.c @@ -35,9 +35,8 @@ int main(int argc, char *argv[]) if (MPI_LONG_DOUBLE != MPI_DATATYPE_NULL) { MPI_Type_size(MPI_LONG_DOUBLE, &type_size); if (type_size != sizeof(long double)) { - printf("type_size != sizeof(long double) : (%d != %zd)\n", - type_size, sizeof(long double)); - ++errs; + printf("type_size != sizeof(long double) : (%d != %zu)\n", type_size, sizeof(long double)); + ++errs; } } #endif @@ -45,9 +44,9 @@ int main(int argc, char *argv[]) if (MPI_C_LONG_DOUBLE_COMPLEX != MPI_DATATYPE_NULL) { MPI_Type_size(MPI_C_LONG_DOUBLE_COMPLEX, &type_size); if (type_size != sizeof(long double _Complex)) { - printf("type_size != sizeof(long double _Complex) : (%d != %zd)\n", - type_size, sizeof(long double _Complex)); - ++errs; + printf("type_size != sizeof(long double _Complex) : (%d != %zu)\n", type_size, + sizeof(long double _Complex)); + ++errs; } } #endif