Fixed printf build warning.

llvm-svn: 183250
This commit is contained in:
Greg Clayton 2013-06-04 21:30:42 +00:00
parent 939889f6a4
commit e86cef633b
1 changed files with 1 additions and 1 deletions

View File

@ -677,7 +677,7 @@ IRMemoryMap::ReadScalarFromMemory (Scalar &scalar, lldb::addr_t process_address,
{
default:
error.SetErrorToGenericError();
error.SetErrorStringWithFormat("Couldn't read scalar: unsupported size %" PRId64, size);
error.SetErrorStringWithFormat("Couldn't read scalar: unsupported size %" PRIu64, (uint64_t)size);
return;
case 1: scalar = extractor.GetU8(&offset); break;
case 2: scalar = extractor.GetU16(&offset); break;