Fix MinGW compilation printing %lls, bug214

This commit is contained in:
Wilson Snyder
2010-02-01 09:28:53 -05:00
parent a41aefe77d
commit 8dca56521b
12 changed files with 62 additions and 26 deletions
+1 -1
View File
@@ -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);
}