mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-29 20:59:45 +01:00
fixed a warning
This commit is contained in:
@@ -80,7 +80,7 @@ const std::string& FilePartSource::filename() const
|
|||||||
std::streamsize FilePartSource::getContentLength() const
|
std::streamsize FilePartSource::getContentLength() const
|
||||||
{
|
{
|
||||||
Poco::File p(_path);
|
Poco::File p(_path);
|
||||||
return p.getSize();
|
return static_cast<std::streamsize>(p.getSize());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user