Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
model-checker : typo
authorMarion Guthmuller <marion.guthmuller@loria.fr>
Tue, 3 Jul 2012 20:38:16 +0000 (22:38 +0200)
committerMarion Guthmuller <marion.guthmuller@loria.fr>
Tue, 3 Jul 2012 20:38:16 +0000 (22:38 +0200)
src/mc/mc_liveness.c

index c841a96..fbbd221 100644 (file)
@@ -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);