Fix TimeValue::Offset* to take uint64_t



git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@105812 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Host/macosx/TimeValue.cpp b/source/Host/macosx/TimeValue.cpp
index 27aad5f..b3f15bc 100644
--- a/source/Host/macosx/TimeValue.cpp
+++ b/source/Host/macosx/TimeValue.cpp
@@ -97,19 +97,19 @@
 }
 
 void
-TimeValue::OffsetWithSeconds (uint32_t sec)
+TimeValue::OffsetWithSeconds (uint64_t sec)
 {
     m_nano_seconds += sec * NSEC_PER_SEC;
 }
 
 void
-TimeValue::OffsetWithMicroSeconds (uint32_t usec)
+TimeValue::OffsetWithMicroSeconds (uint64_t usec)
 {
     m_nano_seconds += usec * NSEC_PER_USEC;
 }
 
 void
-TimeValue::OffsetWithNanoSeconds (uint32_t nsec)
+TimeValue::OffsetWithNanoSeconds (uint64_t nsec)
 {
     m_nano_seconds += nsec;
 }