From 63ec1e618e314703ab00973c1c420c99e822ba7e Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Fri, 13 Aug 2010 13:29:17 +0000 Subject: [PATCH] Fix compilation with gcc 4.5 --- src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 7064589f7..808dac51f 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -135,7 +135,7 @@ void sigsegvHandler(int) { std::cerr << "\n\n*************************************************************\n"; std::cerr << "Catching SIGSEGV, please report a bug at http://bug.qbittorrent.org\nand provide the following backtrace:\n"; print_stacktrace(); - std::raise(SIGSEGV); + raise(SIGSEGV); } void sigabrtHandler(int) { signal(SIGABRT, 0); @@ -143,7 +143,7 @@ void sigabrtHandler(int) { std::cerr << "\n\n*************************************************************\n"; std::cerr << "Catching SIGABRT, please report a bug at http://bug.qbittorrent.org\nand provide the following backtrace:\n"; print_stacktrace(); - std::raise(SIGABRT); + raise(SIGABRT); } #endif