diff --git a/gix-traverse/src/commit/topo/mod.rs b/gix-traverse/src/commit/topo/mod.rs index c2db7e3410c..3b81cdebf26 100644 --- a/gix-traverse/src/commit/topo/mod.rs +++ b/gix-traverse/src/commit/topo/mod.rs @@ -23,7 +23,7 @@ bitflags! { // NOTE: The names correspond to the names of the flags in revision.h #[repr(transparent)] #[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)] - pub(super) struct WalkFlags: u32 { + pub(super) struct WalkFlags: u8 { /// Commit has been seen const Seen = 0b000001; /// Commit has been processed by the Explore walk