Merge pull request #19585 from alalek:hotfix_19540
This commit is contained in:
commit
6c57428742
@ -12,7 +12,7 @@ size_t getFileSize(const string& filename)
|
||||
if (ifs.is_open())
|
||||
{
|
||||
ifs.seekg(0, std::ios::end);
|
||||
return ifs.tellg();
|
||||
return (size_t)ifs.tellg();
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user