From f8ab0e03bae0cad2541f551350dcafb91477b007 Mon Sep 17 00:00:00 2001 From: Jack Andersen Date: Fri, 20 Jan 2017 14:18:50 -1000 Subject: [PATCH] Win32 sync --- lib/logvisor.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/logvisor.cpp b/lib/logvisor.cpp index 90a336f..4204b92 100644 --- a/lib/logvisor.cpp +++ b/lib/logvisor.cpp @@ -124,8 +124,8 @@ void logvisorAbort() // If you caught one of the above signals, it is likely you just // want to quit your program right now. - system("PAUSE"); - exit(1); + signal(SIGABRT, SIG_DFL); + abort(); } #else