Fix print format warning on some platforms (#3699)

This commit is contained in:
Krzysztof Bieganski 2022-10-20 16:15:29 +02:00 committed by GitHub
parent 0e4da3b0bf
commit 8c3ca30c91
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -46,7 +46,7 @@ void VlCoroutineHandle::dump() const {
#ifdef VL_DEBUG
void VlDelayScheduler::VlDelayedCoroutine::dump() const {
VL_DBG_MSGF(" Awaiting time %lu: ", m_timestep);
VL_DBG_MSGF(" Awaiting time %" PRIu64 ": ", m_timestep);
m_handle.dump();
}
#endif