Fixed some compiler warnings because of bit-width
authorSean Callanan <scallanan@apple.com>
Fri, 1 May 2015 00:44:36 +0000 (00:44 +0000)
committerSean Callanan <scallanan@apple.com>
Fri, 1 May 2015 00:44:36 +0000 (00:44 +0000)
mismatches.

llvm-svn: 236295

lldb/source/Host/common/NativeRegisterContext.cpp

index b83f986..54e47a5 100644 (file)
@@ -375,7 +375,7 @@ NativeRegisterContext::ReadRegisterValueFromMemory (
 
     if (src_len > dst_len)
     {
-        error.SetErrorStringWithFormat("%" PRIu64 " bytes is too big to store in register %s (%" PRIu64 " bytes)", src_len, reg_info->name, dst_len);
+        error.SetErrorStringWithFormat("%" PRIu64 " bytes is too big to store in register %s (%" PRIu64 " bytes)", (unsigned long long)src_len, reg_info->name, (unsigned long long)dst_len);
         return error;
     }
 
@@ -398,7 +398,7 @@ NativeRegisterContext::ReadRegisterValueFromMemory (
     if (bytes_read != src_len)
     {
         // This might happen if we read _some_ bytes but not all
-        error.SetErrorStringWithFormat("read %" PRIu64 " of %" PRIu64 " bytes", bytes_read, src_len);
+        error.SetErrorStringWithFormat("read %" PRIu64 " of %" PRIu64 " bytes", (unsigned long long)bytes_read, (unsigned long long)src_len);
         return error;
     }
 
@@ -470,7 +470,7 @@ NativeRegisterContext::WriteRegisterValueToMemory (
                 if (bytes_written != bytes_copied)
                 {
                     // This might happen if we read _some_ bytes but not all
-                    error.SetErrorStringWithFormat("only wrote %" PRIu64 " of %" PRIu64 " bytes", bytes_written, bytes_copied);
+                    error.SetErrorStringWithFormat("only wrote %" PRIu64 " of %" PRIu64 " bytes", (unsigned long long)bytes_written, (unsigned long long)bytes_copied);
                 }
             }
         }