From 171479c6634b9d510b804a8e1eddad90db34bcbb Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Tue, 20 Jun 2023 14:44:34 -0400 Subject: [PATCH] TT#146201 fix typo Change-Id: I6a8cc7364c52ded79bf1196ca112fdde3ef55b3b --- daemon/call.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/call.c b/daemon/call.c index 9e7f96c89..9449fb2d2 100644 --- a/daemon/call.c +++ b/daemon/call.c @@ -2748,7 +2748,7 @@ static int __sub_is_transcoding(gconstpointer p, gconstpointer dummy) { static void set_monologue_flags_per_subscribers(struct call_monologue *ml) { 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; }