From 8069573f08c589cb23869c51a2f681aef32ddcb3 Mon Sep 17 00:00:00 2001 From: nowrep Date: Sat, 15 Mar 2014 19:16:58 +0100 Subject: [PATCH] [Crashlogs] Fix showing bad path when saving crashlogs Regression from recent DataPaths commits --- src/main/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/main.cpp b/src/main/main.cpp index bd56023b6..d539171b2 100644 --- a/src/main/main.cpp +++ b/src/main/main.cpp @@ -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);