Browse Source

TT#146201 fix typo

Change-Id: I6a8cc7364c52ded79bf1196ca112fdde3ef55b3b
pull/1685/head
Richard Fuchs 3 years ago
parent
commit
171479c663
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      daemon/call.c

+ 1
- 1
daemon/call.c View File

@ -2748,7 +2748,7 @@ static int __sub_is_transcoding(gconstpointer p, gconstpointer dummy) {
static void set_monologue_flags_per_subscribers(struct call_monologue *ml) { static void set_monologue_flags_per_subscribers(struct call_monologue *ml) {
ml->transcoding = 0; ml->transcoding = 0;
if (g_queue_find_custom(&ml->subscribers, __sub_is_transcoding, NULL))
if (g_queue_find_custom(&ml->subscribers, NULL, __sub_is_transcoding))
ml->transcoding = 1; ml->transcoding = 1;
} }


Loading…
Cancel
Save