Skip to content

Commit 6c57428

Browse files
committed
Merge pull request opencv#19585 from alalek:hotfix_19540
2 parents 0f35412 + 6d81a88 commit 6c57428

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/imgcodecs/test/test_exr.impl.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ size_t getFileSize(const string& filename)
1212
if (ifs.is_open())
1313
{
1414
ifs.seekg(0, std::ios::end);
15-
return ifs.tellg();
15+
return (size_t)ifs.tellg();
1616
}
1717
return 0;
1818
}

0 commit comments

Comments
 (0)