mirror of
https://github.com/verilator/verilator.git
synced 2026-09-03 16:28:53 +02:00
Fix MinGW compilation printing %lls, bug214
This commit is contained in:
@@ -202,7 +202,7 @@ void VerilatedVcd::printStr (const char* str) {
|
||||
|
||||
void VerilatedVcd::printQuad (vluint64_t n) {
|
||||
char buf [100];
|
||||
sprintf(buf,"%llu",(long long unsigned)n);
|
||||
sprintf(buf,"%" VL_PRI64 "u",(long long unsigned)n);
|
||||
printStr(buf);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user