From 2f036b72e4d313a3aa9fa321a85541adedb17690 Mon Sep 17 00:00:00 2001 From: Andreas Date: Fri, 15 Dec 2023 12:58:05 +0100 Subject: [PATCH] Make inner value of llmp Flags pub (#1725) --- libafl_bolts/src/llmp.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libafl_bolts/src/llmp.rs b/libafl_bolts/src/llmp.rs index a6ad46cd16..dca1a8f7e7 100644 --- a/libafl_bolts/src/llmp.rs +++ b/libafl_bolts/src/llmp.rs @@ -202,7 +202,7 @@ pub struct BrokerId(pub u32); /// The flags, indicating, for example, enabled compression. #[repr(transparent)] #[derive(Copy, Clone, PartialEq, Eq, Hash, Serialize, Deserialize)] -pub struct Flags(u32); +pub struct Flags(pub u32); impl Debug for Flags { fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {