Remove unused var.

This commit is contained in:
Luke Curley 2023-08-02 11:28:53 -07:00
parent 975d6b2580
commit e79b37aa00
1 changed files with 0 additions and 1 deletions

View File

@ -117,7 +117,6 @@ impl Session {
async fn run_segment(mut segment: segment::Publisher, mut stream: RecvStream) -> anyhow::Result<()> { async fn run_segment(mut segment: segment::Publisher, mut stream: RecvStream) -> anyhow::Result<()> {
let mut buf = BytesMut::new(); let mut buf = BytesMut::new();
let _prev = 0;
loop { loop {
let size = stream.read_buf(&mut buf).await?; let size = stream.read_buf(&mut buf).await?;