From e4e9061569c0413062ace2c236b12d9e927c53f3 Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Thu, 10 Sep 2020 12:40:25 -0400 Subject: [PATCH] TT#91003 fix test compiler warning Change-Id: Id2d1add9e41aca2100d5a6f6c9ae388029428ec6 --- t/transcode-test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/transcode-test.c b/t/transcode-test.c index 7c1473f8f..a9a05f398 100644 --- a/t/transcode-test.c +++ b/t/transcode-test.c @@ -99,7 +99,7 @@ static void codec_set(char *c) { static void __sdp_pt_fmt(int num, str codec, int clockrate, str full_codec, str fmt) { struct rtp_payload_type *pt = g_slice_alloc(sizeof(*pt)); *pt = (struct rtp_payload_type) { num, full_codec, codec, - clockrate, STR_CONST_INIT(""), 1, fmt, 0, 0, NULL }; + clockrate, STR_CONST_INIT(""), 1, fmt, {0,0}, 0, 0, NULL }; g_queue_push_tail(&rtp_types, pt); }