Skip to content

Commit

Permalink
Fix silly error
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-noland committed May 13, 2024
1 parent 605264f commit 7cb0d28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tc/filters/flower/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ bitflags! {
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub struct Flags : u32 {
const IsFragment = 1 << 0;
const FragmentIsFirst = 1 << 0;
const FragmentIsFirst = 1 << 1;
const _ = !0;
}
}

0 comments on commit 7cb0d28

Please sign in to comment.