Skip to content

Commit

Permalink
stream: fix ccheck warning
Browse files Browse the repository at this point in the history
  • Loading branch information
cspiel1 committed Mar 14, 2024
1 parent adcca66 commit 05af4ac
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/stream.c
Original file line number Diff line number Diff line change
Expand Up @@ -1627,7 +1627,8 @@ int stream_debug(struct re_printf *pf, const struct stream *s)
pfmb.arg = mb;
err = mbuf_printf(mb, "--- Stream debug ---\n");
mtx_lock(s->tx.lock);
err |= mbuf_printf(mb, " %s dir=%s pt_enc=%d\n", sdp_media_name(s->sdp),
err |= mbuf_printf(mb, " %s dir=%s pt_enc=%d\n",
sdp_media_name(s->sdp),
sdp_dir_name(sdp_media_dir(s->sdp)),
s->tx.pt_enc);

Expand Down

0 comments on commit 05af4ac

Please sign in to comment.