Skip to content

Commit

Permalink
πŸ› Fix property_type_signature! 'interface' arm
Browse files Browse the repository at this point in the history
'get_property_type' expects three args, not four.
  • Loading branch information
luukvanderduim committed Sep 24, 2023
1 parent 97b8b44 commit a0da6e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zbus-lockstep/src/macros.rs
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ macro_rules! property_type_signature {
);

let file = std::fs::File::open(file_path).expect("Failed to open file");
zbus_lockstep::get_property_type(file, &interface_name, member, None)
zbus_lockstep::get_property_type(file, &interface_name, member)
.expect("Failed to get property type signature")
}};
}
Expand Down

0 comments on commit a0da6e2

Please sign in to comment.