aboutsummaryrefslogtreecommitdiff
path: root/src/psyc/psyc_api.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2017-01-17 11:22:00 +0100
committerChristian Grothoff <christian@grothoff.org>2017-01-17 11:22:10 +0100
commitd0bb14e2a958f4f816c6c006dd8b7a979e6de289 (patch)
treeb69929ede9560daf5c298b4e3abe7e109f8daa05 /src/psyc/psyc_api.c
parent9407ee77841b771e774d51eaa2916bceed047c86 (diff)
downloadgnunet-d0bb14e2a958f4f816c6c006dd8b7a979e6de289.tar.gz
gnunet-d0bb14e2a958f4f816c6c006dd8b7a979e6de289.zip
replace redundant MQ_NotifyCallback by SCHEDULER_TaskCallback
Diffstat (limited to 'src/psyc/psyc_api.c')
-rw-r--r--src/psyc/psyc_api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/psyc/psyc_api.c b/src/psyc/psyc_api.c
index d744e7d08..c6544df3a 100644
--- a/src/psyc/psyc_api.c
+++ b/src/psyc/psyc_api.c
@@ -598,7 +598,7 @@ channel_disconnect (struct GNUNET_PSYC_Channel *chn,
598 struct GNUNET_MQ_Envelope *env = GNUNET_MQ_get_last_envelope (chn->mq); 598 struct GNUNET_MQ_Envelope *env = GNUNET_MQ_get_last_envelope (chn->mq);
599 if (NULL != env) 599 if (NULL != env)
600 { 600 {
601 GNUNET_MQ_notify_sent (env, (GNUNET_MQ_NotifyCallback) channel_cleanup, chn); 601 GNUNET_MQ_notify_sent (env, (GNUNET_SCHEDULER_TaskCallback) channel_cleanup, chn);
602 } 602 }
603 else 603 else
604 { 604 {