From cfef12be426de5a8c61be10036a2bab17f667be3 Mon Sep 17 00:00:00 2001 From: Arnaud Giersch Date: Tue, 5 Nov 2013 13:04:43 +0100 Subject: [PATCH] Be consistent: change buf to an array of int. --- teshsuite/smpi/mpich3-test/coll/bcastzerotype.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.20.1