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
This commit is contained in:
parent
e7e1e1ebf5
commit
43135e6e46
1 changed files with 1 additions and 1 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue