Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
KillingSpark committed Mar 30, 2023
1 parent f3f09c7 commit d73f5e6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/decoding/scratch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,9 @@ impl DecoderScratch {
self.huf.table.reinit_from(&dict.huf.table);
self.offset_hist = dict.offset_hist;
self.buffer.dict_content.clear();
self.buffer.dict_content.extend_from_slice(&dict.dict_content);
self.buffer
.dict_content
.extend_from_slice(&dict.dict_content);
}
}

Expand Down

0 comments on commit d73f5e6

Please sign in to comment.