From b8b623096880a383403cced8164f27dae25c8a0e Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Fri, 17 Dec 2021 00:48:17 +0000 Subject: [PATCH] fix merge --- actix-http/src/body/boxed.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actix-http/src/body/boxed.rs b/actix-http/src/body/boxed.rs index de2994551..55634e36b 100644 --- a/actix-http/src/body/boxed.rs +++ b/actix-http/src/body/boxed.rs @@ -31,7 +31,7 @@ impl BoxBody { /// Returns a mutable pinned reference to the inner message body type. #[inline] - pub fn as_pin_mut(&mut self) -> Pin<&mut (dyn MessageBody>)> { + pub fn as_pin_mut(&mut self) -> Pin<&mut (dyn MessageBody>)> { self.0.as_mut() } }