Skip to content

Commit efaaeb6

Browse files
committed
fix clippy errors
1 parent d54bf75 commit efaaeb6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/websocket-proxy/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ async fn main() {
222222
{
223223
let mut compressor =
224224
brotli::CompressorWriter::new(&mut compressed_data_bytes, 4096, 5, 22);
225-
compressor.write_all(&data_bytes).unwrap();
225+
compressor.write_all(data_bytes).unwrap();
226226
}
227227
compressed_data_bytes
228228
} else {

0 commit comments

Comments
 (0)