aboutsummaryrefslogtreecommitdiff
path: root/src/common/linux
diff options
context:
space:
mode:
authorjimblandy <jimblandy@4c0a9323-5329-0410-9bdc-e9ce6186880e>2010-03-18 18:59:27 +0000
committerjimblandy <jimblandy@4c0a9323-5329-0410-9bdc-e9ce6186880e>2010-03-18 18:59:27 +0000
commit43135e6e46da10bd0b94f28b9392c9b2015152eb (patch)
tree5db9ac99aefe412e42b29a713c41e66fd40514ae /src/common/linux
parentBreakpad processor: Support AMD64 stack unwinding driven by DWARF CFI. (diff)
downloadbreakpad-43135e6e46da10bd0b94f28b9392c9b2015152eb.tar.xz
Add omitted newline to warning message in StabsReader::SymbolString.
a=jimblandy, no reviewer git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@555 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/common/linux')
-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.