summaryrefslogtreecommitdiffstats
path: root/tokio-util/src/io/read_buf.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tokio-util/src/io/read_buf.rs')
-rw-r--r--tokio-util/src/io/read_buf.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tokio-util/src/io/read_buf.rs b/tokio-util/src/io/read_buf.rs
index d617fa6f..5bc0d586 100644
--- a/tokio-util/src/io/read_buf.rs
+++ b/tokio-util/src/io/read_buf.rs
@@ -59,7 +59,7 @@ where
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
let this = &mut *self;
- super::poll_read_buf(Pin::new(this.0), cx, this.1)
+ crate::util::poll_read_buf(cx, Pin::new(this.0), this.1)
}
}
}