abort() instead of exit()

This commit is contained in:
discomfitor 2011-08-11 00:35:41 -04:00 committed by Con Kolivas
parent 87120e0f75
commit 4642e68d6f

2
util.c
View file

@ -102,7 +102,7 @@ static void fatal_exit(void)
unlink_files();
fprintf(outputfile, "Fatal error - exiting\n");
fflush(outputfile);
exit(1);
abort();
}
/* Failure when there is likely to be a meaningful error in perror */