When reporting a bug(), call abort() instead of exit(), so that we

can analyse the core.
This commit is contained in:
Martin Mares 2000-05-08 12:38:00 +00:00
parent c304392e65
commit 818ff1e2b7

View file

@ -114,7 +114,7 @@ bug(char *msg, ...)
va_start(args, msg);
vlog(L_BUG[0], msg, args);
exit(1);
abort();
}
void