summaryrefslogtreecommitdiff
path: root/sal
diff options
context:
space:
mode:
Diffstat (limited to 'sal')
-rw-r--r--sal/osl/unx/backtraceapi.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/sal/osl/unx/backtraceapi.cxx b/sal/osl/unx/backtraceapi.cxx
index 8e55cc338020..1868ae7132bb 100644
--- a/sal/osl/unx/backtraceapi.cxx
+++ b/sal/osl/unx/backtraceapi.cxx
@@ -213,6 +213,7 @@ OUString sal::backtrace_to_string(BacktraceState* backtraceState)
{
if (i != 0)
b3.append("\n");
+ b3.append( "#" + OUString::number( i ) + " " );
if(!frameData[i].info.isEmpty())
b3.append(o3tl::runtimeToOUString(frameData[i].info.getStr()));
else
@@ -245,6 +246,7 @@ OUString sal::backtrace_to_string(BacktraceState* backtraceState)
if (i != 0) {
b3.append("\n");
}
+ b3.append( "#" + OUString::number( i ) + " " );
b3.append(o3tl::runtimeToOUString(b2.get()[i]));
}
return b3.makeStringAndClear();