From e8dbecb42c41bb7247d39978fe4c81fa147dd5e2 Mon Sep 17 00:00:00 2001 From: "ted.mielczarek" Date: Wed, 25 Apr 2012 11:42:33 +0000 Subject: Fix compiler warning from format string Patch by Chris Dearman R=ted at http://breakpad.appspot.com/369002/ git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@958 4c0a9323-5329-0410-9bdc-e9ce6186880e --- src/common/dwarf_cu_to_module.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/common/dwarf_cu_to_module.cc') 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); } -- cgit v1.2.1