aboutsummaryrefslogtreecommitdiff
path: root/src/conversation/conversation_api_call.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/conversation/conversation_api_call.c')
-rw-r--r--src/conversation/conversation_api_call.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/conversation/conversation_api_call.c b/src/conversation/conversation_api_call.c
index 51b07b7c8..4813faffd 100644
--- a/src/conversation/conversation_api_call.c
+++ b/src/conversation/conversation_api_call.c
@@ -547,8 +547,6 @@ GNUNET_CONVERSATION_call_start (const struct GNUNET_CONFIGURATION_Handle *cfg,
547 GNUNET_CONVERSATION_CallEventHandler event_handler, 547 GNUNET_CONVERSATION_CallEventHandler event_handler,
548 void *event_handler_cls) 548 void *event_handler_cls)
549{ 549{
550 struct GNUNET_CONVERSATION_Call *call
551 = GNUNET_new (struct GNUNET_CONVERSATION_Call);
552 GNUNET_MQ_hd_fixed_size (call_suspend, 550 GNUNET_MQ_hd_fixed_size (call_suspend,
553 GNUNET_MESSAGE_TYPE_CONVERSATION_CS_PHONE_SUSPEND, 551 GNUNET_MESSAGE_TYPE_CONVERSATION_CS_PHONE_SUSPEND,
554 struct ClientPhoneSuspendMessage); 552 struct ClientPhoneSuspendMessage);
@@ -564,6 +562,8 @@ GNUNET_CONVERSATION_call_start (const struct GNUNET_CONFIGURATION_Handle *cfg,
564 GNUNET_MQ_hd_var_size (call_audio, 562 GNUNET_MQ_hd_var_size (call_audio,
565 GNUNET_MESSAGE_TYPE_CONVERSATION_CS_AUDIO, 563 GNUNET_MESSAGE_TYPE_CONVERSATION_CS_AUDIO,
566 struct ClientAudioMessage); 564 struct ClientAudioMessage);
565 struct GNUNET_CONVERSATION_Call *call
566 = GNUNET_new (struct GNUNET_CONVERSATION_Call);
567 struct GNUNET_MQ_MessageHandler handlers[] = { 567 struct GNUNET_MQ_MessageHandler handlers[] = {
568 make_call_suspend_handler (call), 568 make_call_suspend_handler (call),
569 make_call_resume_handler (call), 569 make_call_resume_handler (call),