Index: programs/mythtranscode/mpeg2fix.cpp =================================================================== --- programs/mythtranscode/mpeg2fix.cpp (revision 8517) +++ programs/mythtranscode/mpeg2fix.cpp (working copy) @@ -208,8 +208,8 @@ statustime = QDateTime::currentDateTime(); statustime = statustime.addSecs(5); - struct stat filestat; - if(stat(inf, &filestat)) { + struct stat64 filestat; + if(stat64(inf, &filestat)) { } filesize = filestat.st_size; } @@ -1165,8 +1165,8 @@ } if (showprogress && QDateTime::currentDateTime() > statustime) { - VERBOSE(MPF_IMPORTANT, QString("%%1 complete") - .arg(100*pkt->pos/filesize)); + VERBOSE(MPF_IMPORTANT, QString("%1% complete") + .arg(100.0*pkt->pos/filesize, 0, 'f', 1)); statustime = QDateTime::currentDateTime(); statustime = statustime.addSecs(5); }