Fix possible log formatting errors.

This commit is contained in:
C.W. Betts
2021-02-04 17:54:51 -07:00
parent 01b3b5066d
commit 662d6e9711
10 changed files with 15 additions and 15 deletions

View File

@ -141,7 +141,7 @@ bool CDImageCueSheet::OpenAndParse(const char* filename)
file_size /= track_sector_size;
if (track_start >= file_size)
{
Log_ErrorPrintf("Failed to open track %u in '%s': track start is out of range (%u vs %u)", track_num, filename,
Log_ErrorPrintf("Failed to open track %u in '%s': track start is out of range (%ld vs %ld)", track_num, filename,
track_start, file_size);
return false;
}