summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/trex_watchdog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/trex_watchdog.cpp b/src/trex_watchdog.cpp
index d099933b..88711b7a 100644
--- a/src/trex_watchdog.cpp
+++ b/src/trex_watchdog.cpp
@@ -92,7 +92,7 @@ std::string Backtrace(int skip = 1)
/* add the addr2line info */
std::stringstream addr2line;
- addr2line << "/usr/bin/addr2line -e " << get_exe_name() << " ";
+ addr2line << "/usr/bin/addr2line -s -e " << get_exe_name() << " ";
for (int i = skip; i < nFrames; i++) {
addr2line << callstack[i] << " ";
}