diff options
author | ted.mielczarek <ted.mielczarek@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2012-04-25 11:42:33 +0000 |
---|---|---|
committer | ted.mielczarek <ted.mielczarek@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2012-04-25 11:42:33 +0000 |
commit | e8dbecb42c41bb7247d39978fe4c81fa147dd5e2 (patch) | |
tree | 4fc2e78a876858ddf7197f17651031e940f272db | |
parent | Fix compilation warnings related to unchecked return values (diff) | |
download | breakpad-e8dbecb42c41bb7247d39978fe4c81fa147dd5e2.tar.xz |
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
-rw-r--r-- | src/common/dwarf_cu_to_module.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/dwarf_cu_to_module.cc b/src/common/dwarf_cu_to_module.cc index e3100a12..ded5f83c 100644 --- a/src/common/dwarf_cu_to_module.cc +++ b/src/common/dwarf_cu_to_module.cc @@ -557,7 +557,7 @@ void DwarfCUToModule::WarningReporter::UncoveredLine(const Module::Line &line) { void DwarfCUToModule::WarningReporter::UnnamedFunction(uint64 offset) { 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); } |