1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-10 14:57:52 +00:00

Fix compilation with gcc 4.5

This commit is contained in:
Christophe Dumez 2010-08-13 13:29:17 +00:00
parent 331c15b76c
commit 63ec1e618e

View File

@ -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