mirror of
https://github.com/boostorg/beast.git
synced 2025-07-30 04:47:29 +02:00
committed by
Vinnie Falco
parent
0c7fbc74f0
commit
70f232f6dd
@ -1,6 +1,7 @@
|
||||
Version 267:
|
||||
|
||||
* Add package for Travis config
|
||||
* Fix signed/unsigned mismatch in file_stdio::seek
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
|
@ -241,7 +241,7 @@ seek(std::uint64_t offset, error_code& ec)
|
||||
ec = make_error_code(errc::bad_file_descriptor);
|
||||
return;
|
||||
}
|
||||
if(offset > (std::numeric_limits<long>::max)())
|
||||
if(offset > static_cast<std::uint64_t>(std::numeric_limits<long>::max()))
|
||||
{
|
||||
ec = make_error_code(errc::invalid_seek);
|
||||
return;
|
||||
|
Reference in New Issue
Block a user