aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/common/linux/stabs_reader.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/linux/stabs_reader.cc b/src/common/linux/stabs_reader.cc
index e8341d30..a536144f 100644
--- a/src/common/linux/stabs_reader.cc
+++ b/src/common/linux/stabs_reader.cc
@@ -57,7 +57,7 @@ StabsReader::StabsReader(const uint8_t *stab, size_t stab_size,
const char *StabsReader::SymbolString() {
ptrdiff_t offset = string_offset_ + symbol_->n_un.n_strx;
if (offset < 0 || (size_t) offset >= stabstr_size_) {
- handler_->Warning("symbol %d: name offset outside the string section",
+ handler_->Warning("symbol %d: name offset outside the string section\n",
symbol_ - symbols_);
// Return our null string, to keep our promise about all names being
// taken from the string section.