Fix compilation error.
This commit is contained in:
parent
fd217d1b3e
commit
d1c25f2135
@ -137,10 +137,10 @@ Result<size_t> BufferedFdBase<FdT>::flush_write() {
|
|||||||
}
|
}
|
||||||
if (result == 0) {
|
if (result == 0) {
|
||||||
if (write_->empty()) {
|
if (write_->empty()) {
|
||||||
LOG(DEBUG) << "Nothing to write to " << get_poll_info().native_fd();
|
LOG(DEBUG) << "Nothing to write to " << FdT::get_poll_info().native_fd();
|
||||||
} else {
|
} else {
|
||||||
LOG(DEBUG) << "Can't flush write to " << get_poll_info().native_fd()
|
LOG(DEBUG) << "Can't flush write to " << FdT::get_poll_info().native_fd()
|
||||||
<< " with flags = " << get_poll_info().get_flags_local();
|
<< " with flags = " << FdT::get_poll_info().get_flags_local();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
|
Loading…
Reference in New Issue
Block a user