Skip to content

Commit

Permalink
Fix non-std build
Browse files Browse the repository at this point in the history
  • Loading branch information
Marta Mularczyk committed Jan 17, 2025
1 parent ee6fddc commit daf5f27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mls-rs/src/group/message_processor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ pub enum ReceivedMessageOrProcessor<'a, C: ClientConfig> {
impl<'a, C: ClientConfig> Debug for ReceivedMessageOrProcessor<'a, C> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
match self {
Self::ReceivedMessage(m) => f.write_str(&format!("ReceivedMessage({m:?})")),
Self::ReceivedMessage(m) => f.write_str(&alloc::format!("ReceivedMessage({m:?})")),
Self::CommitProcessor(_) => f.write_str("CommitProcessor"),
}
}
Expand Down

0 comments on commit daf5f27

Please sign in to comment.