From 22e58536526f37a2da781960fb3f92988986f092 Mon Sep 17 00:00:00 2001 From: Steve Bennett Date: Thu, 1 Dec 2011 17:27:22 +1000 Subject: In JimPanicDump() don't abort() Less messy. This is only enabled for --maintainer, so it easy to attach a debugger if needed Signed-off-by: Steve Bennett --- jim.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'jim.c') diff --git a/jim.c b/jim.c index 9b21d8e..fda721a 100644 --- a/jim.c +++ b/jim.c @@ -548,7 +548,7 @@ void JimPanicDump(int condition, const char *fmt, ...) } #endif - abort(); + exit(1); } #endif -- cgit v1.1