Fix printf warning I introduced in ModuleSpec.h
authorPavel Labath <labath@google.com>
Wed, 16 Nov 2016 10:54:17 +0000 (10:54 +0000)
committerPavel Labath <labath@google.com>
Wed, 16 Nov 2016 10:54:17 +0000 (10:54 +0000)
llvm-svn: 287095

lldb/include/lldb/Core/ModuleSpec.h

index 87b23ad..70d65a7 100644 (file)
@@ -241,7 +241,7 @@ public:
       if (dumped_something)
         strm.PutCString(", ");
       strm.Printf("object_mod_time = 0x%" PRIx64,
-                  llvm::sys::toTimeT(m_object_mod_time));
+                  uint64_t(llvm::sys::toTimeT(m_object_mod_time)));
     }
   }