From 818ff1e2b7b8eb8e707608e76ead94e5c6bd442c Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Mon, 8 May 2000 12:38:00 +0000 Subject: [PATCH] When reporting a bug(), call abort() instead of exit(), so that we can analyse the core. --- sysdep/unix/log.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sysdep/unix/log.c b/sysdep/unix/log.c index fa2902e6..4a4532af 100644 --- a/sysdep/unix/log.c +++ b/sysdep/unix/log.c @@ -114,7 +114,7 @@ bug(char *msg, ...) va_start(args, msg); vlog(L_BUG[0], msg, args); - exit(1); + abort(); } void