Skip to content

Commit

Permalink
fix remaining __auto_type
Browse files Browse the repository at this point in the history
  • Loading branch information
p-avital committed Sep 11, 2023
1 parent faa5805 commit e3a86d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/api.c
Original file line number Diff line number Diff line change
Expand Up @@ -1039,7 +1039,7 @@ z_owned_keyexpr_t z_publisher_keyexpr(z_publisher_t publisher) {
}
z_owned_keyexpr_t z_subscriber_keyexpr(z_subscriber_t sub) {
z_owned_keyexpr_t ret = z_keyexpr_null();
__auto_type lookup = sub._val->_entity_id;
uint32_t lookup = sub._val->_entity_id;
if (sub._val != NULL) {
_z_subscription_sptr_list_t *tail = sub._val->_zn->_local_subscriptions;
while (tail != NULL && !z_keyexpr_check(&ret)) {
Expand Down

0 comments on commit e3a86d9

Please sign in to comment.