From d1c25f213579ee781c9d40eceda4c7f4c9ca0683 Mon Sep 17 00:00:00 2001 From: levlam Date: Tue, 4 Apr 2023 16:39:20 +0300 Subject: [PATCH] Fix compilation error. --- tdutils/td/utils/BufferedFd.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tdutils/td/utils/BufferedFd.h b/tdutils/td/utils/BufferedFd.h index bcfce6d8a..17bef41ff 100644 --- a/tdutils/td/utils/BufferedFd.h +++ b/tdutils/td/utils/BufferedFd.h @@ -137,10 +137,10 @@ Result BufferedFdBase::flush_write() { } if (result == 0) { 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 { - LOG(DEBUG) << "Can't flush write to " << get_poll_info().native_fd() - << " with flags = " << get_poll_info().get_flags_local(); + LOG(DEBUG) << "Can't flush write to " << FdT::get_poll_info().native_fd() + << " with flags = " << FdT::get_poll_info().get_flags_local(); } } return result;