1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

make V work on Windows 7

This commit is contained in:
vitalyster
2019-11-06 23:04:40 +03:00
committed by Alexander Medvednikov
parent e266c8a750
commit 8dbeab9a7b
5 changed files with 21 additions and 9 deletions

View File

@@ -104,7 +104,7 @@ pub fn (b mut Benchmark) total_duration() i64 {
fn (b mut Benchmark) tdiff_in_ms(s string, sticks i64, eticks i64) string {
if b.verbose {
tdiff := (eticks - sticks)
return '${tdiff:6d} ms | $s'
return '${tdiff:6lld} ms | $s'
}
return s
}