fixed a warning

This commit is contained in:
Guenter Obiltschnig 2017-11-10 08:42:31 +01:00
parent a6bdc7b53b
commit 6fef7a3ae0

View File

@ -80,7 +80,7 @@ const std::string& FilePartSource::filename() const
std::streamsize FilePartSource::getContentLength() const
{
Poco::File p(_path);
return p.getSize();
return static_cast<std::streamsize>(p.getSize());
}