From ce2c1e5bd59b2d28d3361a0f2d31b6ce309a0595 Mon Sep 17 00:00:00 2001 From: Augustin Degomme Date: Wed, 4 Dec 2019 22:47:01 +0100 Subject: [PATCH] remove debug stuff added by mistake... --- teshsuite/smpi/pt2pt-pingpong/pt2pt-pingpong.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/teshsuite/smpi/pt2pt-pingpong/pt2pt-pingpong.c b/teshsuite/smpi/pt2pt-pingpong/pt2pt-pingpong.c index c395917d9f..dcaf7e6131 100644 --- a/teshsuite/smpi/pt2pt-pingpong/pt2pt-pingpong.c +++ b/teshsuite/smpi/pt2pt-pingpong/pt2pt-pingpong.c @@ -8,7 +8,6 @@ #include #include -#include static void test_opts(int* argc, char **argv[]){ int found = 0; @@ -31,8 +30,6 @@ int main(int argc, char *argv[]) int rank; int msg = 99; MPI_Status status; - int* test = (int*)malloc(8); - int err = MPI_Init(&argc, &argv); /* Initialize MPI */ /* test getopt function */ @@ -75,7 +72,6 @@ int main(int argc, char *argv[]) MPI_Send(&msg, 1, MPI_INT, src, tag2, MPI_COMM_WORLD); } } - free(test); MPI_Finalize(); return 0; } -- 2.20.1