diff options
author | jimblandy <jimblandy@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2010-03-18 18:59:27 +0000 |
---|---|---|
committer | jimblandy <jimblandy@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2010-03-18 18:59:27 +0000 |
commit | 43135e6e46da10bd0b94f28b9392c9b2015152eb (patch) | |
tree | 5db9ac99aefe412e42b29a713c41e66fd40514ae /src | |
parent | Breakpad processor: Support AMD64 stack unwinding driven by DWARF CFI. (diff) | |
download | breakpad-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')
-rw-r--r-- | src/common/linux/stabs_reader.cc | 2 |
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. |