Browse Source

TT#91003 fix test compiler warning

Change-Id: Id2d1add9e41aca2100d5a6f6c9ae388029428ec6
pull/1077/head
Richard Fuchs 5 years ago
parent
commit
e4e9061569
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      t/transcode-test.c

+ 1
- 1
t/transcode-test.c View File

@ -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);
}


Loading…
Cancel
Save