mirror of
https://github.com/yuzu-emu/breakpad.git
synced 2025-07-09 08:20:39 +00:00
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:
parent
d6fb5a7c51
commit
19d77e0c33
|
@ -456,7 +456,7 @@ void DwarfCUToModule::WarningReporter::UnknownSpecification(uint64 offset,
|
||||||
CUHeading();
|
CUHeading();
|
||||||
fprintf(stderr, "%s: the DIE at offset 0x%llx has a DW_AT_specification"
|
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"
|
" 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);
|
filename_.c_str(), offset, target);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -465,7 +465,7 @@ void DwarfCUToModule::WarningReporter::UnknownAbstractOrigin(uint64 offset,
|
||||||
CUHeading();
|
CUHeading();
|
||||||
fprintf(stderr, "%s: the DIE at offset 0x%llx has a DW_AT_abstract_origin"
|
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"
|
" 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);
|
filename_.c_str(), offset, target);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue