MT#61368 monologue_offer_answer: unify comments styling

Make code commmentaries of the same style.

Change-Id: If0d6aec17a25d8d0f04f29b0ab2c6792d56e64b5
pull/1897/head
Donat Zenichev 3 months ago
parent ccdea5fd06
commit 08c482282f

@ -3077,14 +3077,14 @@ int monologue_offer_answer(struct call_monologue *monologues[2], sdp_streams_q *
continue;
if (r_media->monologue != receiver_ml)
continue;
// check type, it must match
/* check type, it must match */
if (str_cmp_str(&r_media->type, &sender_media->type))
continue;
// check a=mid, it must match if present
/* check a=mid, it must match if present */
if (sender_media->media_id.len && r_media->media_id.len
&& str_cmp_str(&sender_media->media_id, &r_media->media_id))
continue;
// found it
/* found it */
receiver_media = r_media;
}
if (!receiver_media) {

Loading…
Cancel
Save