Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Initialize variables, and make valgrind happy.
[simgrid.git] / teshsuite / smpi / hvector_test.c
index 86d1a40..da16a74 100644 (file)
@@ -5,7 +5,7 @@
 int main(int argc, char **argv) {
 
   int rank, i, j;
-  double a[SIZE][SIZE];
+  double a[SIZE][SIZE] = {{0}};
 
   MPI_Datatype columntype;