Skip to content

Commit

Permalink
Merge pull request #595 from FineFindus/fix/fdo-warning
Browse files Browse the repository at this point in the history
🐛zx: correctly check if fdo ifaces is empty
  • Loading branch information
zeenix authored Feb 16, 2024
2 parents d5bea0f + 0529342 commit 29fef24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zbus_xmlgen/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ fn main() -> Result<(), Box<dyn Error>> {
.cloned()
.partition(|i| i.name().starts_with(fdo_iface_prefix));

if !fdo_iface_prefix.is_empty() {
if !fdo_standard_ifaces.is_empty() {
eprintln!("Skipping `org.freedesktop.DBus` interfaces, please use https://docs.rs/zbus/latest/zbus/fdo/index.html")
}

Expand Down

0 comments on commit 29fef24

Please sign in to comment.