Skip to content

Commit a8c5dde

Browse files
committed
fix: dummy z_reply_create function args
1 parent 9b74390 commit a8c5dde

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/net/reply.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,9 +107,9 @@ _z_reply_t _z_reply_create(_z_keyexpr_t keyexpr, z_reply_tag_t tag, _z_id_t id,
107107
return reply;
108108
}
109109
#else
110-
_z_reply_t _z_reply_create(const _z_keyexpr_t *keyexpr, z_reply_tag_t tag, z_id_t id, const _z_bytes_t *payload,
111-
const _z_timestamp_t *timestamp, const _z_encoding_t encoding, const z_sample_kind_t kind,
112-
const z_attachment_t att) {
110+
_z_reply_t _z_reply_create(_z_keyexpr_t keyexpr, z_reply_tag_t tag, _z_id_t id, const _z_bytes_t *payload,
111+
const _z_timestamp_t *timestamp, _z_encoding_t encoding, z_sample_kind_t kind,
112+
z_attachment_t att) {
113113
_ZP_UNUSED(keyexpr);
114114
_ZP_UNUSED(tag);
115115
_ZP_UNUSED(id);

0 commit comments

Comments
 (0)