mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2024-11-23 11:17:09 +08:00
修复编译警告
This commit is contained in:
parent
8338773767
commit
d541ed2572
@ -122,7 +122,7 @@ HttpFileBody::HttpFileBody(const string &file_path, bool use_mmap) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void HttpFileBody::setRange(uint64_t offset, uint64_t max_size) {
|
void HttpFileBody::setRange(uint64_t offset, uint64_t max_size) {
|
||||||
CHECK(offset <= _read_to && max_size + offset <= _read_to);
|
CHECK((int64_t)offset <= _read_to && (int64_t)(max_size + offset) <= _read_to);
|
||||||
_read_to = max_size + offset;
|
_read_to = max_size + offset;
|
||||||
_file_offset = offset;
|
_file_offset = offset;
|
||||||
if (_fp && !_map_addr) {
|
if (_fp && !_map_addr) {
|
||||||
|
Loading…
Reference in New Issue
Block a user