summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJiri Moskovcak <jmoskovc@localhost.localdomain>2009-11-27 12:53:19 +0100
committerJiri Moskovcak <jmoskovc@localhost.localdomain>2009-11-27 12:53:19 +0100
commit692c15b50a65e6171221bc482d3892d016e37261 (patch)
treeb2962ef376aaa57927fc7e02a9e7477997fd18ba /lib
parent1ce0e144d7bd83c98daccf45c51f4f86ee7e0d00 (diff)
downloadabrt-692c15b50a65e6171221bc482d3892d016e37261.tar.gz
abrt-692c15b50a65e6171221bc482d3892d016e37261.tar.xz
abrt-692c15b50a65e6171221bc482d3892d016e37261.zip
CCpp: moved the "Debuginfo absent" messsage to the end of the backtrace
Diffstat (limited to 'lib')
-rw-r--r--lib/Plugins/CCpp.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Plugins/CCpp.cpp b/lib/Plugins/CCpp.cpp
index d83d9b5..01f4eb1 100644
--- a/lib/Plugins/CCpp.cpp
+++ b/lib/Plugins/CCpp.cpp
@@ -932,7 +932,7 @@ void CAnalyzerCCpp::CreateReport(const char *pDebugDumpDir, int force)
GetBacktrace(pDebugDumpDir, m_sDebugInfoDirs.c_str(), backtrace);
dd.Open(pDebugDumpDir);
- dd.SaveText(FILENAME_BACKTRACE, (build_ids + backtrace).c_str());
+ dd.SaveText(FILENAME_BACKTRACE, (backtrace + build_ids).c_str());
if (m_bMemoryMap)
{
dd.SaveText(FILENAME_MEMORYMAP, "memory map of the crashed C/C++ application, not implemented yet");