Skip to content

Commit

Permalink
fix build with html5ever bump
Browse files Browse the repository at this point in the history
  • Loading branch information
klensy committed Jun 15, 2024
1 parent 52242f2 commit d69f088
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/linkchecker/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,7 @@ fn maybe_redirect(source: &str) -> Option<String> {

fn parse_html<Sink: TokenSink>(source: &str, sink: Sink) -> Sink {
let tendril: ByteTendril = source.as_bytes().into();
let mut input = BufferQueue::new();
let mut input = BufferQueue::default();
input.push_back(tendril.try_reinterpret().unwrap());

let mut tok = Tokenizer::new(sink, TokenizerOpts::default());
Expand Down

0 comments on commit d69f088

Please sign in to comment.