From 19d77e0c33449b5a78243b8ecf8b8400bfbd5c88 Mon Sep 17 00:00:00 2001 From: jimblandy Date: Tue, 23 Feb 2010 01:23:36 +0000 Subject: Breakpad Linux dumper: Add missing newlines to error messages. Some of the error messages that could be generated in the process of parsing DWARF debugging information lack terminating newlines. a=jimblandly, r=nealsid git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@536 4c0a9323-5329-0410-9bdc-e9ce6186880e --- src/common/linux/dwarf_cu_to_module.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/common/linux/dwarf_cu_to_module.cc') diff --git a/src/common/linux/dwarf_cu_to_module.cc b/src/common/linux/dwarf_cu_to_module.cc index 19efafd0..9ad3393c 100644 --- a/src/common/linux/dwarf_cu_to_module.cc +++ b/src/common/linux/dwarf_cu_to_module.cc @@ -456,7 +456,7 @@ void DwarfCUToModule::WarningReporter::UnknownSpecification(uint64 offset, CUHeading(); fprintf(stderr, "%s: the DIE at offset 0x%llx has a DW_AT_specification" " attribute referring to the die at offset 0x%llx, which either" - " was not marked as a declaration, or comes later in the file", + " was not marked as a declaration, or comes later in the file\n", filename_.c_str(), offset, target); } @@ -465,7 +465,7 @@ void DwarfCUToModule::WarningReporter::UnknownAbstractOrigin(uint64 offset, CUHeading(); fprintf(stderr, "%s: the DIE at offset 0x%llx has a DW_AT_abstract_origin" " attribute referring to the die at offset 0x%llx, which either" - " was not marked as an inline, or comes later in the file", + " was not marked as an inline, or comes later in the file\n", filename_.c_str(), offset, target); } -- cgit v1.2.1