Skip to content

Commit

Permalink
client: fix WAYLAND_DEBUG output for new ids
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxVerevkin committed Mar 5, 2024
1 parent d2d70de commit fe6ee46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wayrs-client/src/debug_message.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ impl Debug for DebugMessage<'_> {
ArgValue::AnyNewId(iface, version, id) => write!(
f,
"new id {}@{}v{version}",
iface.to_string_lossy(),
id.as_u32(),
iface.to_string_lossy()
)?,
ArgValue::String(x) | ArgValue::OptString(Some(x)) => write!(f, "{x:?}")?,
ArgValue::Array(_) => write!(f, "<array>")?,
Expand Down

0 comments on commit fe6ee46

Please sign in to comment.