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:
jimblandy 2010-03-18 18:59:27 +00:00
parent e7e1e1ebf5
commit 43135e6e46

View File

@ -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.