進行状況のパーセント表示を修正

This commit is contained in:
noriy 2019-06-12 12:39:17 +09:00 committed by GitHub
parent 4853c64cfc
commit 9578efe63f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -279,7 +279,7 @@ static void test_arib_std_b25(const TCHAR *src, const TCHAR *dst, OPTION *opt)
offset += sbuf.size;
if(opt->verbose != 0){
m = (int)(10000*offset/total);
m = (int)((uint64_t)10000*offset/total);
mbps = 0.0;
#if defined(_WIN32)
tick = GetTickCount();