mirror of
https://github.com/pocoproject/poco.git
synced 2025-02-22 15:07:26 +01:00
fixed a warning
This commit is contained in:
parent
a6bdc7b53b
commit
6fef7a3ae0
@ -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());
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user