From 43135e6e46da10bd0b94f28b9392c9b2015152eb Mon Sep 17 00:00:00 2001 From: jimblandy Date: Thu, 18 Mar 2010 18:59:27 +0000 Subject: 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 --- src/common/linux/stabs_reader.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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. -- cgit v1.2.1