forked from OSchip/llvm-project
Fix printf warning I introduced in ModuleSpec.h
llvm-svn: 287095
This commit is contained in:
parent
0c20e05e89
commit
5b909a6534
|
@ -241,7 +241,7 @@ public:
|
||||||
if (dumped_something)
|
if (dumped_something)
|
||||||
strm.PutCString(", ");
|
strm.PutCString(", ");
|
||||||
strm.Printf("object_mod_time = 0x%" PRIx64,
|
strm.Printf("object_mod_time = 0x%" PRIx64,
|
||||||
llvm::sys::toTimeT(m_object_mod_time));
|
uint64_t(llvm::sys::toTimeT(m_object_mod_time)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue