summaryrefslogtreecommitdiffstats
path: root/vendor/futures-util/src/io/write_all.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/futures-util/src/io/write_all.rs')
-rw-r--r--vendor/futures-util/src/io/write_all.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/futures-util/src/io/write_all.rs b/vendor/futures-util/src/io/write_all.rs
index b134bf1b2..08c025f94 100644
--- a/vendor/futures-util/src/io/write_all.rs
+++ b/vendor/futures-util/src/io/write_all.rs
@@ -30,7 +30,7 @@ impl<W: AsyncWrite + ?Sized + Unpin> Future for WriteAll<'_, W> {
while !this.buf.is_empty() {
let n = ready!(Pin::new(&mut this.writer).poll_write(cx, this.buf))?;
{
- let (_, rest) = mem::replace(&mut this.buf, &[]).split_at(n);
+ let (_, rest) = mem::take(&mut this.buf).split_at(n);
this.buf = rest;
}
if n == 0 {