From: Arnaud Giersch Date: Tue, 5 Nov 2013 12:04:43 +0000 (+0100) Subject: Be consistent: change buf to an array of int. X-Git-Tag: v3_10_rc2~42 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/cfef12be426de5a8c61be10036a2bab17f667be3?hp=f4d034af50e34fbac8e6cf57d767f6704dfaf49c Be consistent: change buf to an array of int. --- diff --git a/teshsuite/smpi/mpich3-test/coll/bcastzerotype.c b/teshsuite/smpi/mpich3-test/coll/bcastzerotype.c index 65a6055273..ece1e2549d 100644 --- a/teshsuite/smpi/mpich3-test/coll/bcastzerotype.c +++ b/teshsuite/smpi/mpich3-test/coll/bcastzerotype.c @@ -10,7 +10,7 @@ int main(int argc, char *argv[]) { int i, type_size; MPI_Datatype type = MPI_DATATYPE_NULL; - char *buf = NULL; + int *buf = NULL; int wrank, wsize; MPI_Init(&argc, &argv);