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
This commit is contained in:
jimblandy 2010-02-23 01:23:36 +00:00
parent d6fb5a7c51
commit 19d77e0c33

View File

@ -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);
}