Fix compilation

This commit is contained in:
Sosthène Guédon
2023-04-13 10:22:13 +02:00
parent fffbe77614
commit 9362e9f2f5
+3 -1
View File
@@ -661,7 +661,9 @@ fn load_if_exists_streaming<const R: usize>(
read_len += r.data.len();
buffer.expand(&r.data)?;
}
Err(_err) => error!("Failed to read chunk: {:?}", _err),
Err(_err) => {
error!("Failed to read chunk: {:?}", _err);
}
}
}