Skip to content

Commit

Permalink
fix _z_trigger_local_subscriptions signature
Browse files Browse the repository at this point in the history
  • Loading branch information
DenisBiryukov91 committed Jun 25, 2024
1 parent 13d2224 commit cd95ad2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/session/subscription.c
Original file line number Diff line number Diff line change
Expand Up @@ -208,12 +208,11 @@ void _z_flush_subscriptions(_z_session_t *zn) {
}
#else // Z_FEATURE_SUBSCRIPTION == 0

void _z_trigger_local_subscriptions(_z_session_t *zn, const _z_keyexpr_t keyexpr, const _z_bytes_t attachment,
void _z_trigger_local_subscriptions(_z_session_t *zn, const _z_keyexpr_t keyexpr, const _z_bytes_t payload,
_z_n_qos_t qos, const _z_bytes_t attachment) {
_ZP_UNUSED(zn);
_ZP_UNUSED(keyexpr);
_ZP_UNUSED(payload);
_ZP_UNUSED(payload_len);
_ZP_UNUSED(qos);
_ZP_UNUSED(attachment);
}
Expand Down

0 comments on commit cd95ad2

Please sign in to comment.