Skip to content

Commit

Permalink
rtp_relay: fix debugging in prev commit
Browse files Browse the repository at this point in the history
(cherry picked from commit 5b87766)
  • Loading branch information
razvancrainea committed Aug 8, 2024
1 parent 09e8303 commit 4ee164c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/rtp_relay/rtp_relay.c
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ struct rtp_relay_leg *rtp_relay_new_leg(struct rtp_relay_ctx *ctx,
leg->index = idx;
leg->ref = 1;
list_add(&leg->list, &ctx->legs);
LM_RTP_DBG("new leg=%p index=%d tag=[%.*s]\n", leg, idx, tag?tag->len:0, tag.s);
LM_RTP_DBG("new leg=%p index=%d tag=[%.*s]\n", leg, idx, tag?tag->len:0, tag->s);
return leg;
}

Expand Down

0 comments on commit 4ee164c

Please sign in to comment.