Fix compiler warning from format string
Patch by Chris Dearman <chris@mips.com> R=ted at http://breakpad.appspot.com/369002/ git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@958 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
parent
24c3c97633
commit
e8dbecb42c
1 changed files with 1 additions and 1 deletions
|
@ -557,7 +557,7 @@ void DwarfCUToModule::WarningReporter::UncoveredLine(const Module::Line &line) {
|
||||||
|
|
||||||
void DwarfCUToModule::WarningReporter::UnnamedFunction(uint64 offset) {
|
void DwarfCUToModule::WarningReporter::UnnamedFunction(uint64 offset) {
|
||||||
CUHeading();
|
CUHeading();
|
||||||
fprintf(stderr, "%s: warning: function at offset 0x%" PRIx64 " has no name\n",
|
fprintf(stderr, "%s: warning: function at offset 0x%llx has no name\n",
|
||||||
filename_.c_str(), offset);
|
filename_.c_str(), offset);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue