From 397abf4651623afe8c57e5371db9fffbed855118 Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Tue, 4 Jul 2023 10:30:51 -0400 Subject: [PATCH] MT#55283 fix variable/argument shadowing in test Change-Id: I4e016c49291b34c03d4ab42e16d9232a80e785fe --- t/test-transcode.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/t/test-transcode.c b/t/test-transcode.c index 8b9abdb7c..a869c0f2a 100644 --- a/t/test-transcode.c +++ b/t/test-transcode.c @@ -321,9 +321,9 @@ static void __packet_seq_ts(const char *file, int line, struct call_media *media printf("\n"); uint32_t ts = ntohl(rtp->timestamp); uint16_t seq = ntohs(rtp->seq_num); - uint32_t ssrc = ntohl(rtp->ssrc); - uint32_t ssrc_pt = ssrc; - printf("recv RTP SSRC %x seq %u TS %u PT %u\n", (unsigned int) ssrc, + uint32_t rtp_ssrc = ntohl(rtp->ssrc); + uint32_t ssrc_pt = rtp_ssrc; + printf("recv RTP SSRC %x seq %u TS %u PT %u\n", (unsigned int) rtp_ssrc, (unsigned int) seq, (unsigned int) ts, (unsigned int) rtp->m_pt); if (g_hash_table_contains(rtp_ts_ht, GUINT_TO_POINTER(ssrc_pt))) { uint32_t old_ts = GPOINTER_TO_UINT(g_hash_table_lookup(rtp_ts_ht,