Fix printf warning I introduced in ModuleSpec.h

llvm-svn: 287095
This commit is contained in:
Pavel Labath 2016-11-16 10:54:17 +00:00
parent 0c20e05e89
commit 5b909a6534
1 changed files with 1 additions and 1 deletions

View 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)));
}
}