Compare commits

...

2 Commits

Author SHA1 Message Date
IntoTheNight 603a3d44e9 uauhfa 2023-07-09 16:37:13 +05:30
IntoTheNight ed1f2be05e add a shrimple macro
add a shrimple macro
2023-07-09 16:33:47 +05:30
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ impl fmt::Display for DeviceTree {
writeln!(f, "{}{}\r", tab!(3), attr)?;
}
for child in &device.children {
writeln!(f, "{}{}\r", tab!(4), child.name)?;
writeln!(f, "{}{}\r", tab!(3), child.name)?;
for attr in &child.attributes {
writeln!(f, "{}{}\r", tab!(4), attr)?;
}