Merge pull request #25 from noriy/noriy-patch-1

進行状況のパーセント表示を修正(Thx noriy)
This commit is contained in:
stz2012 2019-06-12 13:23:49 +09:00 committed by GitHub
commit 4f4520800a
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();