aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorjimblandy <jimblandy@4c0a9323-5329-0410-9bdc-e9ce6186880e>2010-02-23 01:23:36 +0000
committerjimblandy <jimblandy@4c0a9323-5329-0410-9bdc-e9ce6186880e>2010-02-23 01:23:36 +0000
commit19d77e0c33449b5a78243b8ecf8b8400bfbd5c88 (patch)
tree1b47370c40677f540dc87aa2d6aa2a4f4bcc93e2 /src
parentBreakpad Linux dumper: Record AbstractOrigin entries for all DIEs that need t... (diff)
downloadbreakpad-19d77e0c33449b5a78243b8ecf8b8400bfbd5c88.tar.xz
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
Diffstat (limited to 'src')
-rw-r--r--src/common/linux/dwarf_cu_to_module.cc4
1 files changed, 2 insertions, 2 deletions
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);
}