From: Marion Guthmuller Date: Tue, 3 Jul 2012 20:38:16 +0000 (+0200) Subject: model-checker : typo X-Git-Tag: v3_8~367 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/28628af902f72f15bd3fb0b7c93d1dd8a63d29ac model-checker : typo --- diff --git a/src/mc/mc_liveness.c b/src/mc/mc_liveness.c index c841a9663b..fbbd221e90 100644 --- a/src/mc/mc_liveness.c +++ b/src/mc/mc_liveness.c @@ -63,7 +63,7 @@ int create_dump(int pair) printf("child exited with status %d\n", status); if(WIFSIGNALED(status) && WCOREDUMP(status)){ printf("got a core dump\n"); - char *core_name = malloc(20);; + char *core_name = malloc(20); sprintf(core_name,"mv core core_%d", pair); system((char *)core_name); free(core_name);