1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-21 17:52:10 +02:00

[Crashlogs] Fix showing bad path when saving crashlogs

Regression from recent DataPaths commits
This commit is contained in:
nowrep 2014-03-15 19:16:58 +01:00
parent 0a622e325c
commit 8069573f08

View File

@ -48,7 +48,7 @@ void qupzilla_signal_handler(int s)
}
sigSegvServed = true;
std::cout << "QupZilla: Crashed :( Saving backtrace in " << qPrintable(DataPaths::path(DataPaths::Config)) << "crashlog ..." << std::endl;
std::cout << "QupZilla: Crashed :( Saving backtrace in " << qPrintable(DataPaths::path(DataPaths::Config)) << "/crashlog ..." << std::endl;
void* array[100];
int size = backtrace(array, 100);