Skip to content

Commit

Permalink
MT#60476 make print_rtcp() func static
Browse files Browse the repository at this point in the history
Because used only within daemon/sdp.c
makes no sense to keep it visible for other
files (even though there is no even
a declaration in the header).

Change-Id: Ifb4798aa713fec9f787f1422a15ea41ae6c5b190
  • Loading branch information
zenichev committed Sep 18, 2024
1 parent 572dd71 commit 71b2629
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion daemon/sdp.c
Original file line number Diff line number Diff line change
Expand Up @@ -3126,7 +3126,7 @@ static void append_attr_int_to_gstring(GString *s, const char * name, const int
append_int_tagged_attr_to_gstring(s, name, value, NULL, flags, media_type);
}

struct packet_stream *print_rtcp(GString *s, struct call_media *media, packet_stream_list *rtp_ps_link,
static struct packet_stream *print_rtcp(GString *s, struct call_media *media, packet_stream_list *rtp_ps_link,
const sdp_ng_flags *flags, struct sdp_media *sdp_media)
{
struct packet_stream *ps = rtp_ps_link->data;
Expand Down

0 comments on commit 71b2629

Please sign in to comment.